aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcharacter/llanimationstates.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llcharacter/llanimationstates.cpp
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/llcharacter/llanimationstates.cpp')
-rw-r--r--linden/indra/llcharacter/llanimationstates.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llcharacter/llanimationstates.cpp b/linden/indra/llcharacter/llanimationstates.cpp
index 2b13b0a..fdeffc5 100644
--- a/linden/indra/llcharacter/llanimationstates.cpp
+++ b/linden/indra/llcharacter/llanimationstates.cpp
@@ -228,10 +228,10 @@ const char *LLAnimationLibrary::animStateToString( const LLUUID& state )
228//----------------------------------------------------------------------------- 228//-----------------------------------------------------------------------------
229// Return the animation state for a given name 229// Return the animation state for a given name
230//----------------------------------------------------------------------------- 230//-----------------------------------------------------------------------------
231LLUUID LLAnimationLibrary::stringToAnimState( const char *name, BOOL allow_ids ) 231LLUUID LLAnimationLibrary::stringToAnimState( const std::string& name, BOOL allow_ids )
232{ 232{
233 LLString lower_case_name(name); 233 std::string lower_case_name(name);
234 LLString::toLower(lower_case_name); 234 LLStringUtil::toLower(lower_case_name);
235 235
236 char *true_name = mAnimStringTable.checkString(lower_case_name.c_str()); 236 char *true_name = mAnimStringTable.checkString(lower_case_name.c_str());
237 237