diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2025-06-19 15:49:10 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2025-06-19 23:56:11 +0300 |
commit | feb4494365e019efd68d6881e4ff63e939a01264 (patch) | |
tree | d9e00200b2afed693bcaf1d58de7cae781241795 /indra/newview/llpanelgroupbulkimpl.h | |
parent | 03b6d09ae51761c0b3244a477c0b16ca8ac05dad (diff) |
Fix loading name of banned residents in group bulk ban panel
Diffstat (limited to 'indra/newview/llpanelgroupbulkimpl.h')
-rw-r--r-- | indra/newview/llpanelgroupbulkimpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpanelgroupbulkimpl.h b/indra/newview/llpanelgroupbulkimpl.h index 5515bd6d9a..f186ae5373 100644 --- a/indra/newview/llpanelgroupbulkimpl.h +++ b/indra/newview/llpanelgroupbulkimpl.h @@ -59,7 +59,7 @@ public: void handleSelection(); void addUsers(const std::vector<std::string>& names, const uuid_vec_t& agent_ids); - void setGroupName(std::string name); + void setGroupName(const std::string& name); public: @@ -84,7 +84,7 @@ public: void (*mCloseCallback)(void* data); void* mCloseCallbackUserData; - boost::signals2::connection mAvatarNameCacheConnection; + std::map<LLUUID, boost::signals2::connection> mAvatarNameCacheConnections; // The following are for the LLPanelGroupInvite subclass only. // These aren't needed for LLPanelGroupBulkBan, but if we have to add another |