summaryrefslogtreecommitdiff
path: root/indra/newview/llnamelistctrl.cpp
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2010-05-21 17:11:31 -0700
committerJames Cook <james@lindenlab.com>2010-05-21 17:11:31 -0700
commitd674d11f895b8f3d578cded931cdc1c430379c95 (patch)
tree91ed1a14337d6abf26291de16aa9d28304a33beb /indra/newview/llnamelistctrl.cpp
parent8992232e64155588c64b4ab29bad6766bc6c7ff6 (diff)
Rename LLAvatarName::getNameAndSLID() to getCompleteName()
Discussed with Leyla/Richard
Diffstat (limited to 'indra/newview/llnamelistctrl.cpp')
-rw-r--r--indra/newview/llnamelistctrl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llnamelistctrl.cpp b/indra/newview/llnamelistctrl.cpp
index 2a7e84256e..a2450fcdd2 100644
--- a/indra/newview/llnamelistctrl.cpp
+++ b/indra/newview/llnamelistctrl.cpp
@@ -306,7 +306,7 @@ LLScrollListItem* LLNameListCtrl::addNameItemRow(
if (mShortNames)
fullname = av_name.mDisplayName;
else
- fullname = av_name.getNameAndSLID();
+ fullname = av_name.getCompleteName();
}
else
{
@@ -375,7 +375,7 @@ void LLNameListCtrl::onAvatarNameCache(const LLUUID& agent_id,
if (mShortNames)
name = av_name.mDisplayName;
else
- name = av_name.getNameAndSLID();
+ name = av_name.getCompleteName();
item_list::iterator iter;
for (iter = getItemList().begin(); iter != getItemList().end(); iter++)