aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterchat.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/llfloaterchat.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 'linden/indra/newview/llfloaterchat.h')
-rw-r--r--linden/indra/newview/llfloaterchat.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/linden/indra/newview/llfloaterchat.h b/linden/indra/newview/llfloaterchat.h
index 341e925..04eb279 100644
--- a/linden/indra/newview/llfloaterchat.h
+++ b/linden/indra/newview/llfloaterchat.h
@@ -50,7 +50,7 @@ class LLCheckBoxCtrl;
50class LLPanelActiveSpeakers; 50class LLPanelActiveSpeakers;
51 51
52class LLFloaterChat 52class LLFloaterChat
53: public LLFloater, public LLUISingleton<LLFloaterChat> 53 : public LLFloater, public LLUISingleton<LLFloaterChat, LLFloaterChat>
54{ 54{
55public: 55public:
56 LLFloaterChat(const LLSD& seed); 56 LLFloaterChat(const LLSD& seed);
@@ -78,9 +78,12 @@ public:
78 static void loadHistory(); 78 static void loadHistory();
79 static void* createSpeakersPanel(void* data); 79 static void* createSpeakersPanel(void* data);
80 static void* createChatPanel(void* data); 80 static void* createChatPanel(void* data);
81 static void hideInstance(const LLSD& id);
82 81
83protected: 82 // visibility policy for LLUISingleton
83 static bool visible(LLFloater* instance, const LLSD& key);
84 static void show(LLFloater* instance, const LLSD& key);
85 static void hide(LLFloater* instance, const LLSD& key);
86
84 LLPanelActiveSpeakers* mPanel; 87 LLPanelActiveSpeakers* mPanel;
85 BOOL mScrolledToEnd; 88 BOOL mScrolledToEnd;
86}; 89};