diff options
Diffstat (limited to 'indra/newview/lltoolview.h')
-rw-r--r-- | indra/newview/lltoolview.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/lltoolview.h b/indra/newview/lltoolview.h index bde0010466..23f4263602 100644 --- a/indra/newview/lltoolview.h +++ b/indra/newview/lltoolview.h @@ -33,7 +33,6 @@ #define LL_LLTOOLVIEW_H // requires stdtypes.h -#include "linked_lists.h" #include "llpanel.h" // forward declares @@ -84,8 +83,8 @@ private: private: - LLLinkedList - <LLToolContainer> mContainList; + typedef std::vector<LLToolContainer*> contain_list_t; + contain_list_t mContainList; S32 mButtonCount; // used to compute rectangles }; |