diff options
author | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
commit | cd17687f01420952712a500107e0f93e7ab8d5f8 (patch) | |
tree | ce48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/lltoolmgr.h | |
parent | Second Life viewer sources 1.19.0.5 (diff) | |
download | meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.zip meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.gz meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.bz2 meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.xz |
Second Life viewer sources 1.19.1.0
Diffstat (limited to 'linden/indra/newview/lltoolmgr.h')
-rw-r--r-- | linden/indra/newview/lltoolmgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/lltoolmgr.h b/linden/indra/newview/lltoolmgr.h index bdd24a7..c193be3 100644 --- a/linden/indra/newview/lltoolmgr.h +++ b/linden/indra/newview/lltoolmgr.h | |||
@@ -32,7 +32,6 @@ | |||
32 | #ifndef LL_TOOLMGR_H | 32 | #ifndef LL_TOOLMGR_H |
33 | #define LL_TOOLMGR_H | 33 | #define LL_TOOLMGR_H |
34 | 34 | ||
35 | #include "doublelinkedlist.h" | ||
36 | #include "llkeyboard.h" | 35 | #include "llkeyboard.h" |
37 | 36 | ||
38 | class LLTool; | 37 | class LLTool; |
@@ -108,7 +107,8 @@ public: | |||
108 | 107 | ||
109 | protected: | 108 | protected: |
110 | LLTool* mSelectedTool; | 109 | LLTool* mSelectedTool; |
111 | LLDoubleLinkedList<LLTool> mToolList; | 110 | typedef std::vector<LLTool*> tool_list_t; |
111 | tool_list_t mToolList; | ||
112 | }; | 112 | }; |
113 | 113 | ||
114 | // Handy callbacks for switching tools | 114 | // Handy callbacks for switching tools |