diff options
author | Steve Bennetts <steve@lindenlab.com> | 2009-10-28 16:21:14 -0700 |
---|---|---|
committer | Steve Bennetts <steve@lindenlab.com> | 2009-10-28 16:21:14 -0700 |
commit | d993ce14d83530544c0e0f05af10d235999d9a5f (patch) | |
tree | b1b9de442fb35d81ad73b1fc3391bc3bde71d878 /indra/newview/llavatarlist.h | |
parent | 9cfcb53d1904d868e1e3f640baf794aba9ffbb2a (diff) | |
parent | 7d87e55c547a537526ee121dc68df6513d513f05 (diff) |
merge
Diffstat (limited to 'indra/newview/llavatarlist.h')
-rw-r--r-- | indra/newview/llavatarlist.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llavatarlist.h b/indra/newview/llavatarlist.h index a83a72b26c..f60f1f00f3 100644 --- a/indra/newview/llavatarlist.h +++ b/indra/newview/llavatarlist.h @@ -70,7 +70,11 @@ public: void setContextMenu(LLAvatarListItem::ContextMenu* menu) { mContextMenu = menu; } + void toggleIcons(); void sortByName(); + void setShowIcons(std::string param_name); + bool getIconsVisible() const { return mShowIcons; } + const std::string getIconParamName() const{return mIconParamName;} virtual BOOL handleRightMouseDown(S32 x, S32 y, MASK mask); protected: @@ -86,7 +90,9 @@ private: bool mIgnoreOnlineStatus; bool mDirty; + bool mShowIcons; + std::string mIconParamName; std::string mNameFilter; uuid_vector_t mIDs; |