diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-04-09 18:53:52 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-04-09 18:53:52 -0700 |
commit | 2115211328261d875dc0ccacdc2021f1c501a36d (patch) | |
tree | 0cc143ed25cfadc2b54f37a8895523bcf44e1582 /indra/newview/lltoolmgr.h | |
parent | 4888f7d34969b596e2b37ef72576118e1c0c27ac (diff) |
Re-implementing the path testing functionality as a proper LLTool.
Diffstat (limited to 'indra/newview/lltoolmgr.h')
-rw-r--r-- | indra/newview/lltoolmgr.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/lltoolmgr.h b/indra/newview/lltoolmgr.h index 12649cfba2..e7d1c56c83 100644 --- a/indra/newview/lltoolmgr.h +++ b/indra/newview/lltoolmgr.h @@ -89,7 +89,7 @@ protected: class LLToolset { public: - LLToolset() : mSelectedTool(NULL) {} + LLToolset() : mSelectedTool(NULL), mIsShowFloaterTools(true) {} LLTool* getSelectedTool() { return mSelectedTool; } @@ -105,10 +105,14 @@ public: BOOL isToolSelected( S32 index ); + void setShowFloaterTools(bool pShowFloaterTools) {mIsShowFloaterTools = pShowFloaterTools;}; + bool isShowFloaterTools() const {return mIsShowFloaterTools;}; + protected: LLTool* mSelectedTool; typedef std::vector<LLTool*> tool_list_t; tool_list_t mToolList; + bool mIsShowFloaterTools; }; // Globals |