diff options
author | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
commit | cd17687f01420952712a500107e0f93e7ab8d5f8 (patch) | |
tree | ce48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/llfloaterchat.h | |
parent | Second Life viewer sources 1.19.0.5 (diff) | |
download | meta-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.h | 9 |
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; | |||
50 | class LLPanelActiveSpeakers; | 50 | class LLPanelActiveSpeakers; |
51 | 51 | ||
52 | class LLFloaterChat | 52 | class LLFloaterChat |
53 | : public LLFloater, public LLUISingleton<LLFloaterChat> | 53 | : public LLFloater, public LLUISingleton<LLFloaterChat, LLFloaterChat> |
54 | { | 54 | { |
55 | public: | 55 | public: |
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 | ||
83 | protected: | 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 | }; |