aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llhoverview.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:34 -0500
committerJacek Antonelli2008-08-15 23:45:34 -0500
commitcd17687f01420952712a500107e0f93e7ab8d5f8 (patch)
treece48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/llhoverview.h
parentSecond Life viewer sources 1.19.0.5 (diff)
downloadmeta-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 '')
-rw-r--r--linden/indra/newview/llhoverview.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/linden/indra/newview/llhoverview.h b/linden/indra/newview/llhoverview.h
index ee41f88..ae74c44 100644
--- a/linden/indra/newview/llhoverview.h
+++ b/linden/indra/newview/llhoverview.h
@@ -37,15 +37,15 @@
37#include "llview.h" 37#include "llview.h"
38#include "llframetimer.h" 38#include "llframetimer.h"
39#include "llstring.h" 39#include "llstring.h"
40#include "linked_lists.h"
41#include "llcoord.h" 40#include "llcoord.h"
42#include "v3dmath.h" 41#include "v3dmath.h"
43 42
44#include "lldarray.h" 43#include "lldarray.h"
45#include "llhudconnector.h" 44#include "llviewerobject.h"
46 45
47class LLTool; 46class LLTool;
48 47
48
49// 49//
50// Classes 50// Classes
51// 51//
@@ -97,7 +97,8 @@ protected:
97 // How long has the hover popup been visible? 97 // How long has the hover popup been visible?
98 LLFrameTimer mHoverTimer; 98 LLFrameTimer mHoverTimer;
99 99
100 LLLinkedList<LLString> mText; 100 typedef std::list<std::string> text_list_t;
101 text_list_t mText;
101 102
102 BOOL mUseHover; 103 BOOL mUseHover;
103 104