diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llcharacter/llvisualparam.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llcharacter/llvisualparam.cpp b/linden/indra/llcharacter/llvisualparam.cpp index 00b1072..e3320f8 100644 --- a/linden/indra/llcharacter/llvisualparam.cpp +++ b/linden/indra/llcharacter/llvisualparam.cpp | |||
@@ -89,7 +89,7 @@ BOOL LLVisualParamInfo::parseXml(LLXmlTreeNode *node) | |||
89 | } | 89 | } |
90 | 90 | ||
91 | // attribute: sex | 91 | // attribute: sex |
92 | LLString sex = "both"; | 92 | std::string sex = "both"; |
93 | static LLStdStringHandle sex_string = LLXmlTree::addAttributeString("sex"); | 93 | static LLStdStringHandle sex_string = LLXmlTree::addAttributeString("sex"); |
94 | node->getFastAttributeString( sex_string, sex ); // optional | 94 | node->getFastAttributeString( sex_string, sex ); // optional |
95 | if( sex == "both" ) | 95 | if( sex == "both" ) |
@@ -127,7 +127,7 @@ BOOL LLVisualParamInfo::parseXml(LLXmlTreeNode *node) | |||
127 | 127 | ||
128 | // JC - make sure the display name includes the capitalization in the XML file, | 128 | // JC - make sure the display name includes the capitalization in the XML file, |
129 | // not the lowercased version. | 129 | // not the lowercased version. |
130 | LLString::toLower(mName); | 130 | LLStringUtil::toLower(mName); |
131 | 131 | ||
132 | // attribute: label_min | 132 | // attribute: label_min |
133 | static LLStdStringHandle label_min_string = LLXmlTree::addAttributeString("label_min"); | 133 | static LLStdStringHandle label_min_string = LLXmlTree::addAttributeString("label_min"); |