diff options
author | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-12-01 15:55:24 +0200 |
---|---|---|
committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-12-01 15:55:24 +0200 |
commit | b509e655bdb7d2ef8a6cc0d87f765626b6d5783f (patch) | |
tree | 9ff40cd154e1fea8cbc42d9ea0c2b1479f5bdc4c /indra/newview/llpanelavatar.h | |
parent | 9e0e0e4d54c73288a159beae3a654771a75f3714 (diff) |
fix for normal EXT-2820 [BSI] Functionality loss: Can't open groups from Resident's profile
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llpanelavatar.h')
-rw-r--r-- | indra/newview/llpanelavatar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpanelavatar.h b/indra/newview/llpanelavatar.h index f54aeee4eb..b19c5cca49 100644 --- a/indra/newview/llpanelavatar.h +++ b/indra/newview/llpanelavatar.h @@ -192,8 +192,8 @@ protected: private: - typedef std::list<std::string> group_list_t; - group_list_t mGroups; + typedef std::map< std::string,LLUUID> group_map_t; + group_map_t mGroups; LLToggleableMenu* mProfileMenu; }; |