X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2049ba38adafa0ec146880de29f26e32dd69a125..d20a079e3a126dd3790dec2c83f93c48a308c743:/include/wx/help.h

diff --git a/include/wx/help.h b/include/wx/help.h
index 0fe92b70fd..8b6a9c1ddb 100644
--- a/include/wx/help.h
+++ b/include/wx/help.h
@@ -1,24 +1,30 @@
-#ifndef __HELPH_BASE__
-#define __HELPH_BASE__
+#ifndef _WX_HELP_H_BASE_
+#define _WX_HELP_H_BASE_
 
-#ifdef __WXMSW__
-#include "wx/msw/helpwin.h"
-#elif defined(__WXGTK__)
-#include "wx/generic/helphtml.h"
-#else
-#include "wx/generic/helpxlp.h"
-#endif
+#if wxUSE_HELP
+
+#include "wx/helpbase.h"
 
 #ifdef __WXMSW__
-#define wxHelpController wxWinHelpController
-#define classwxHelpController classwxWinHelpController
-#elif defined(__WXGTK__)
-#define wxHelpController wxHTMLHelpController
-#define classwxHelpController classwxHTMLHelpController
+    #include "wx/msw/helpwin.h"
+
+    #define wxHelpController wxWinHelpController
+    #define sm_classwxHelpController sm_classwxWinHelpController
+#else // !MSW
+
+#if wxUSE_WXHTML_HELP
+    #include "wx/generic/helpwxht.h"
+    #define wxHelpController wxHelpControllerHtml
+    #define sm_classwxHelpController sm_classwxHelpControllerHtml
 #else
-#define wxHelpController wxXLPHelpController
-#define classwxHelpController classwxXLPHelpController
+    #include "wx/generic/helpext.h"
+    #define wxHelpController wxExtHelpController
+    #define sm_classwxHelpController sm_classwxExtHelpController
 #endif
 
+#endif // MSW/!MSW
+
+#endif // wxUSE_HELP
+
 #endif
-    // __HELPH_BASE__
+    // _WX_HELP_H_BASE_