diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-01-12 11:54:24 +0200 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-01-12 11:54:24 +0200 |
commit | 8f04b738d28d54430b4e22e06930b056bdbdf195 (patch) | |
tree | c637cb37245339298b5d39303fa4cb51532b788e /indra/newview/llfloaterworldmap.cpp | |
parent | bf5145422384386cdb31429ad01d79f7719161a5 (diff) |
MAINT-2742 FIXED Duplicate Display Names appear once in share picker
Diffstat (limited to 'indra/newview/llfloaterworldmap.cpp')
-rwxr-xr-x | indra/newview/llfloaterworldmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp index 5093a40ce4..6837f6159f 100755 --- a/indra/newview/llfloaterworldmap.cpp +++ b/indra/newview/llfloaterworldmap.cpp @@ -891,7 +891,7 @@ void LLFloaterWorldMap::buildAvatarIDList() end = collector.mMappable.end(); for( ; it != end; ++it) { - list->addSimpleElement((*it).first, ADD_BOTTOM, (*it).second); + list->addSimpleElement((*it).second, ADD_BOTTOM, (*it).first); } list->setCurrentByID( LLAvatarTracker::instance().getAvatarID() ); |