diff options
Diffstat (limited to 'linden/indra/newview/llimview.h')
-rw-r--r-- | linden/indra/newview/llimview.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/newview/llimview.h b/linden/indra/newview/llimview.h index 8f665d2..2539203 100644 --- a/linden/indra/newview/llimview.h +++ b/linden/indra/newview/llimview.h | |||
@@ -174,7 +174,7 @@ public: | |||
174 | 174 | ||
175 | void loadIgnoreGroup(); | 175 | void loadIgnoreGroup(); |
176 | void saveIgnoreGroup(); | 176 | void saveIgnoreGroup(); |
177 | void updateIgnoreGroup(const LLUUID& group_id, const bool& ignore); | 177 | void updateIgnoreGroup(const LLUUID& group_id, bool ignore); |
178 | // Returns true if group chat is ignored for the UUID, false if not | 178 | // Returns true if group chat is ignored for the UUID, false if not |
179 | bool getIgnoreGroup(const LLUUID& group_id); | 179 | bool getIgnoreGroup(const LLUUID& group_id); |
180 | 180 | ||
@@ -219,6 +219,10 @@ private: | |||
219 | LLSD mPendingAgentListUpdates; | 219 | LLSD mPendingAgentListUpdates; |
220 | 220 | ||
221 | std::list<LLUUID> mIgnoreGroupList; | 221 | std::list<LLUUID> mIgnoreGroupList; |
222 | |||
223 | public: | ||
224 | |||
225 | S32 getIgnoreGroupListCount() { return mIgnoreGroupList.size(); } | ||
222 | }; | 226 | }; |
223 | 227 | ||
224 | 228 | ||