Skip to content
Snippets Groups Projects
Commit 819bbce3 authored by Cho's avatar Cho
Browse files

made FB+SL friends show up as <fb_name> (<sl_name)

parent a8e89fbb
No related branches found
No related tags found
No related merge requests found
...@@ -643,7 +643,7 @@ void LLAvatarListSocial::addSocialItem(const LLUUID& id, const std::string& name ...@@ -643,7 +643,7 @@ void LLAvatarListSocial::addSocialItem(const LLUUID& id, const std::string& name
LLAvatarListItem* item = new LLAvatarListItem(); LLAvatarListItem* item = new LLAvatarListItem();
item->setAvatarId(id, mSessionID, mIgnoreOnlineStatus, false); // this sets the name as a side effect item->setAvatarId(id, mSessionID, mIgnoreOnlineStatus, false); // this sets the name as a side effect
item->setAvatarName(has_avatar_name ? avatar_name.mDisplayName + " (" + name + ")" : name); item->setAvatarName(has_avatar_name ? name + " (" + avatar_name.mDisplayName + ")" : name);
item->setOnline(mIgnoreOnlineStatus ? true : is_online); item->setOnline(mIgnoreOnlineStatus ? true : is_online);
item->showLastInteractionTime(mShowLastInteractionTime); item->showLastInteractionTime(mShowLastInteractionTime);
......
...@@ -72,7 +72,7 @@ void LLSocialList::addNewItem(const LLUUID& id, const std::string& name, BOOL is ...@@ -72,7 +72,7 @@ void LLSocialList::addNewItem(const LLUUID& id, const std::string& name, BOOL is
item->mIcon->setValue(id); item->mIcon->setValue(id);
} }
item->setName(has_avatar_name ? avatar_name.mDisplayName + " (" + name + ")" : name, mNameFilter); item->setName(has_avatar_name ? name + " (" + avatar_name.mDisplayName + ")" : name, mNameFilter);
addItem(item, id, pos); addItem(item, id, pos);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment