diff options
author | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2014-05-23 17:57:40 +0300 |
---|---|---|
committer | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2014-05-23 17:57:40 +0300 |
commit | 37239340458b3340f50e0748bb28b4cb52e287e2 (patch) | |
tree | 300e1e7b246e42fa1f862ccd5977af4827509e08 | |
parent | dc304b2be8cdf2f4496d85c7e7b3b95e5f4da716 (diff) |
MAINT-4081 FIXED When removing a friend, the dialog now mentions complete name
-rwxr-xr-x | indra/newview/llavataractions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index 0bf5aa8031..8235b13118 100755 --- a/indra/newview/llavataractions.cpp +++ b/indra/newview/llavataractions.cpp @@ -143,7 +143,7 @@ void LLAvatarActions::removeFriendsDialog(const uuid_vec_t& ids) LLAvatarName av_name; if(LLAvatarNameCache::get(agent_id, &av_name)) { - args["NAME"] = av_name.getDisplayName(); + args["NAME"] = av_name.getCompleteName(); } msgType = "RemoveFromFriends"; |