diff options
author | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-08-13 07:53:38 +0300 |
---|---|---|
committer | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-08-13 07:53:38 +0300 |
commit | 9e64435bd2168ce0c9213e7a7fb746da33f5e7e6 (patch) | |
tree | 1c964fbf192b0a788bee340d0e720c08214535ea /indra/newview/llgroupmgr.h | |
parent | 7172b76f0e70bcb1c4616f7126c279637e18c675 (diff) |
MAINT-5219 FIXED "Ban Member" from the group chatters list context menu is greyed out
when you have the ability to manage the ban list
Diffstat (limited to 'indra/newview/llgroupmgr.h')
-rwxr-xr-x | indra/newview/llgroupmgr.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llgroupmgr.h b/indra/newview/llgroupmgr.h index a58799350d..5307c4de92 100755 --- a/indra/newview/llgroupmgr.h +++ b/indra/newview/llgroupmgr.h @@ -269,8 +269,8 @@ public: void createBanEntry(const LLUUID& ban_id, const LLGroupBanData& ban_data = LLGroupBanData()); void removeBanEntry(const LLUUID& ban_id); + void banMemberById(const LLUUID& participant_uuid); - public: typedef std::map<LLUUID,LLGroupMemberData*> member_list_t; typedef std::map<LLUUID,LLGroupRoleData*> role_list_t; @@ -302,6 +302,9 @@ public: S32 mMemberCount; S32 mRoleCount; + bool mPendingBanRequest; + LLUUID mPendingBanMemberID; + protected: void sendRoleChanges(); void cancelRoleChanges(); |