summaryrefslogtreecommitdiff
path: root/indra/newview/llnamebox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llnamebox.cpp')
-rw-r--r--indra/newview/llnamebox.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/indra/newview/llnamebox.cpp b/indra/newview/llnamebox.cpp
index 17185299a8..9f272dd0c1 100644
--- a/indra/newview/llnamebox.cpp
+++ b/indra/newview/llnamebox.cpp
@@ -47,7 +47,7 @@ std::set<LLNameBox*> LLNameBox::sInstances;
LLNameBox::LLNameBox(const std::string& name, const LLRect& rect, const LLUUID& name_id, BOOL is_group, const LLFontGL* font, BOOL mouse_opaque)
-: LLTextBox(name, rect, "(retrieving)", font, mouse_opaque),
+: LLTextBox(name, rect, std::string("(retrieving)"), font, mouse_opaque),
mNameID(name_id)
{
LLNameBox::sInstances.insert(this);
@@ -57,7 +57,7 @@ LLNameBox::LLNameBox(const std::string& name, const LLRect& rect, const LLUUID&
}
else
{
- setText(LLString::null);
+ setText(LLStringUtil::null);
}
}
@@ -84,26 +84,26 @@ void LLNameBox::setNameID(const LLUUID& name_id, BOOL is_group)
setText(name);
}
-void LLNameBox::refresh(const LLUUID& id, const char* firstname,
- const char* lastname, BOOL is_group)
+void LLNameBox::refresh(const LLUUID& id, const std::string& firstname,
+ const std::string& lastname, BOOL is_group)
{
if (id == mNameID)
{
- LLString name;
-
- name.assign(firstname);
+ std::string name;
if (!is_group)
{
- name.append(1, ' ');
- name.append(lastname);
+ name = firstname + " " + lastname;
+ }
+ else
+ {
+ name = firstname;
}
-
setText(name);
}
}
-void LLNameBox::refreshAll(const LLUUID& id, const char* firstname,
- const char* lastname, BOOL is_group)
+void LLNameBox::refreshAll(const LLUUID& id, const std::string& firstname,
+ const std::string& lastname, BOOL is_group)
{
std::set<LLNameBox*>::iterator it;
for (it = LLNameBox::sInstances.begin();