diff options
author | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-12-11 12:24:19 +0200 |
---|---|---|
committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-12-11 12:24:19 +0200 |
commit | e699dcb0c9ea378682d0d0cfbbb933f9e5c94332 (patch) | |
tree | 3d0a850ca7e56de8321080c29efb3b0480e782c6 /indra/newview/llgrouplist.h | |
parent | 791465bab968a738568ddf0abaa5fa6766eb020d (diff) |
fix for normall bug EXT-3245 Icon of group in list in "Group" tab is refreshed only after restarting Viewer
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llgrouplist.h')
-rw-r--r-- | indra/newview/llgrouplist.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llgrouplist.h b/indra/newview/llgrouplist.h index 41b4d01711..33cfe005b9 100644 --- a/indra/newview/llgrouplist.h +++ b/indra/newview/llgrouplist.h @@ -38,6 +38,7 @@ #include "llpanel.h" #include "llpointer.h" #include "llstyle.h" +#include "llgroupmgr.h" /** * Auto-updating list of agent groups. @@ -80,9 +81,11 @@ class LLIconCtrl; class LLTextBox; class LLGroupListItem : public LLPanel + , public LLGroupMgrObserver { public: LLGroupListItem(); + ~LLGroupListItem(); /*virtual*/ BOOL postBuild(); /*virtual*/ void setValue(const LLSD& value); void onMouseEnter(S32 x, S32 y, MASK mask); @@ -96,6 +99,7 @@ public: void setGroupIconID(const LLUUID& group_icon_id); void setGroupIconVisible(bool visible); + virtual void changed(LLGroupChange gc); private: void setActive(bool active); void onInfoBtnClick(); |