X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b761fe4cfa77774f534953050d27a1a06c9d2e8b..5a224901b8ede55e1db9980f0fcaf7d2cb49285f:/include/wx/help.h

diff --git a/include/wx/help.h b/include/wx/help.h
index 98f7cee571..9fceec2754 100644
--- a/include/wx/help.h
+++ b/include/wx/help.h
@@ -1,6 +1,8 @@
 #ifndef _WX_HELP_H_BASE_
 #define _WX_HELP_H_BASE_
 
+#if wxUSE_HELP
+
 #include "wx/helpbase.h"
 
 #ifdef __WXMSW__
@@ -9,8 +11,20 @@
     #define wxHelpController wxWinHelpController
     #define sm_classwxHelpController sm_classwxWinHelpController
 #else // !MSW
-    #include "wx/helpbase.h"
+
+#if wxUSE_WXHTML_HELP
+    #include "wx/html/helpctrl.h"
+    #define wxHelpController wxHtmlHelpController
+    #define sm_classwxHelpController sm_classwxHtmlHelpController
+#else
+    #include "wx/generic/helpext.h"
+    #define wxHelpController wxExtHelpController
+    #define sm_classwxHelpController sm_classwxExtHelpController
+#endif
+
 #endif // MSW/!MSW
 
+#endif // wxUSE_HELP
+
 #endif
     // _WX_HELP_H_BASE_