aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/lltoolview.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/lltoolview.h')
-rw-r--r--linden/indra/newview/lltoolview.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/linden/indra/newview/lltoolview.h b/linden/indra/newview/lltoolview.h
index 22d6807..8c955a3 100644
--- a/linden/indra/newview/lltoolview.h
+++ b/linden/indra/newview/lltoolview.h
@@ -33,7 +33,6 @@
33#define LL_LLTOOLVIEW_H 33#define LL_LLTOOLVIEW_H
34 34
35// requires stdtypes.h 35// requires stdtypes.h
36#include "linked_lists.h"
37#include "llpanel.h" 36#include "llpanel.h"
38 37
39// forward declares 38// forward declares
@@ -84,8 +83,8 @@ private:
84 83
85 84
86private: 85private:
87 LLLinkedList 86 typedef std::vector<LLToolContainer*> contain_list_t;
88 <LLToolContainer> mContainList; 87 contain_list_t mContainList;
89 S32 mButtonCount; // used to compute rectangles 88 S32 mButtonCount; // used to compute rectangles
90}; 89};
91 90