aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/lluictrlfactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llui/lluictrlfactory.h')
-rw-r--r--linden/indra/llui/lluictrlfactory.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/llui/lluictrlfactory.h b/linden/indra/llui/lluictrlfactory.h
index b9325a0..0c1d9dd 100644
--- a/linden/indra/llui/lluictrlfactory.h
+++ b/linden/indra/llui/lluictrlfactory.h
@@ -46,7 +46,7 @@ class LLUICtrlFactory : public LLSingleton<LLUICtrlFactory>
46public: 46public:
47 LLUICtrlFactory(); 47 LLUICtrlFactory();
48 // do not call! needs to be public so run-time can clean up the singleton 48 // do not call! needs to be public so run-time can clean up the singleton
49 virtual ~LLUICtrlFactory() {} 49 virtual ~LLUICtrlFactory();
50 50
51 void setupPaths(); 51 void setupPaths();
52 52
@@ -88,6 +88,8 @@ private:
88 std::deque<const LLCallbackMap::map_t*> mFactoryStack; 88 std::deque<const LLCallbackMap::map_t*> mFactoryStack;
89 89
90 static std::vector<LLString> mXUIPaths; 90 static std::vector<LLString> mXUIPaths;
91
92 LLPanel* mDummyPanel;
91}; 93};
92 94
93 95