diff options
author | Sergey Borushevsky <sborushevsky@productengine.com> | 2009-11-24 20:27:56 +0200 |
---|---|---|
committer | Sergey Borushevsky <sborushevsky@productengine.com> | 2009-11-24 20:27:56 +0200 |
commit | c227f93b1a6f89847242261f634079d4d6bfbf08 (patch) | |
tree | 525f9d3c05986b52948334734b28f6435de2519f /indra/newview/llpanelavatar.h | |
parent | b0704256918d4576730ab324e1d67fe8fdd787c0 (diff) |
Fixed minor bug EXT-2745 (Contents of Groups field duplicates after IM session has been started)
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llpanelavatar.h')
-rw-r--r-- | indra/newview/llpanelavatar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llpanelavatar.h b/indra/newview/llpanelavatar.h index a0caf0c915..8e0965e0b7 100644 --- a/indra/newview/llpanelavatar.h +++ b/indra/newview/llpanelavatar.h @@ -183,7 +183,9 @@ protected: private: - std::string mGroups; + typedef std::list<std::string> group_list_t; + group_list_t mGroups; + LLToggleableMenu* mProfileMenu; }; |