aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterchat.cpp
diff options
context:
space:
mode:
authorAleric Inglewood2010-11-06 20:50:03 +0100
committerAleric Inglewood2010-11-06 20:50:03 +0100
commit9d26172d74b6de638339f8f6336f5087c91c8831 (patch)
treeb4e1a94bbedaae9dd1ddf41e87ff71eb681e6209 /linden/indra/newview/llfloaterchat.cpp
parentMerge remote branch 'mccabe/weekly' into weekly (diff)
downloadmeta-impy-9d26172d74b6de638339f8f6336f5087c91c8831.zip
meta-impy-9d26172d74b6de638339f8f6336f5087c91c8831.tar.gz
meta-impy-9d26172d74b6de638339f8f6336f5087c91c8831.tar.bz2
meta-impy-9d26172d74b6de638339f8f6336f5087c91c8831.tar.xz
IMP-688: ERROR: getString: Invalid string control nick01
Don't look for the old variable names, "nick0*", but for the new ones.
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llfloaterchat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llfloaterchat.cpp b/linden/indra/newview/llfloaterchat.cpp
index a453c39..e9ea14b 100644
--- a/linden/indra/newview/llfloaterchat.cpp
+++ b/linden/indra/newview/llfloaterchat.cpp
@@ -482,7 +482,7 @@ BOOL LLFloaterChat::isOwnNameInText(const std::string &text_line)
482 for (int i=1; i<=3; i++) 482 for (int i=1; i<=3; i++)
483 { 483 {
484 std::stringstream key; 484 std::stringstream key;
485 key << "nick0" << i; 485 key << "HighlightNickname0" << i;
486 std::string nick = gSavedSettings.getString(key.str()); 486 std::string nick = gSavedSettings.getString(key.str());
487 if (! nick.empty()) 487 if (! nick.empty())
488 { 488 {