diff options
author | maxim_productengine <mnikolenko@productengine.com> | 2018-07-05 18:00:00 +0300 |
---|---|---|
committer | maxim_productengine <mnikolenko@productengine.com> | 2018-07-05 18:00:00 +0300 |
commit | a1466bcdaf8f085b62855ee05d943b20a9c7dfc8 (patch) | |
tree | 4bc1ae29e335e6eaa682ccc2a82e6ff9f7e5a578 /indra/newview/llnamelistctrl.h | |
parent | 7ee5ee3dfdda7809c1ff3c40d6de2f01e5e207aa (diff) |
MAINT-8587 FIXED "(waiting)" instead of a group name in the Allowed Groups list.
Diffstat (limited to 'indra/newview/llnamelistctrl.h')
-rw-r--r-- | indra/newview/llnamelistctrl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llnamelistctrl.h b/indra/newview/llnamelistctrl.h index 50b4d80302..ef0be135e6 100644 --- a/indra/newview/llnamelistctrl.h +++ b/indra/newview/llnamelistctrl.h @@ -173,6 +173,7 @@ public: private: void showInspector(const LLUUID& avatar_id, bool is_group, bool is_experience = false); void onAvatarNameCache(const LLUUID& agent_id, const LLAvatarName& av_name, std::string suffix, std::string prefix, LLHandle<LLNameListItem> item); + void onGroupNameCache(const LLUUID& group_id, const std::string name, LLHandle<LLNameListItem> item); private: S32 mNameColumnIndex; @@ -181,6 +182,7 @@ private: bool mShortNames; // display name only, no SLID typedef std::map<LLUUID, boost::signals2::connection> avatar_name_cache_connection_map_t; avatar_name_cache_connection_map_t mAvatarNameCacheConnections; + avatar_name_cache_connection_map_t mGroupNameCacheConnections; S32 mPendingLookupsRemaining; namelist_complete_signal_t mNameListCompleteSignal; |