aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterhtmlhelp.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llfloaterhtmlhelp.h')
-rw-r--r--linden/indra/newview/llfloaterhtmlhelp.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/linden/indra/newview/llfloaterhtmlhelp.h b/linden/indra/newview/llfloaterhtmlhelp.h
index 5868db0..9e9c88d 100644
--- a/linden/indra/newview/llfloaterhtmlhelp.h
+++ b/linden/indra/newview/llfloaterhtmlhelp.h
@@ -4,6 +4,7 @@
4 * 4 *
5 * Copyright (c) 2006-2007, Linden Research, Inc. 5 * Copyright (c) 2006-2007, Linden Research, Inc.
6 * 6 *
7 * Second Life Viewer Source Code
7 * The source code in this file ("Source Code") is provided by Linden Lab 8 * The source code in this file ("Source Code") is provided by Linden Lab
8 * to you under the terms of the GNU General Public License, version 2.0 9 * to you under the terms of the GNU General Public License, version 2.0
9 * ("GPL"), unless you have obtained a separate licensing agreement 10 * ("GPL"), unless you have obtained a separate licensing agreement
@@ -30,14 +31,20 @@
30#ifndef LL_LLFLOATERHTMLHELP_H 31#ifndef LL_LLFLOATERHTMLHELP_H
31#define LL_LLFLOATERHTMLHELP_H 32#define LL_LLFLOATERHTMLHELP_H
32 33
33class LLHtmlHelp 34#include "llhtmlhelp.h"
35
36class LLViewerHtmlHelp : public LLHtmlHelp
34{ 37{
35public: 38public:
36 static void show(void* url_string = NULL); 39 LLViewerHtmlHelp();
37 static BOOL getFloaterOpened(); 40 virtual ~LLViewerHtmlHelp();
41
42 /*virtual*/ void show(std::string start_url = "");
43 /*virtual*/ BOOL getFloaterOpened();
38}; 44};
39 45
46extern LLViewerHtmlHelp gViewerHtmlHelp;
47
40#endif // LL_LLFLOATERHTMLHELP_H 48#endif // LL_LLFLOATERHTMLHELP_H
41 49
42#endif // LL_LIBXUL_ENABLED 50#endif // LL_LIBXUL_ENABLED
43