]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/help.h
correction for compilation with -cpp-precomp option
[wxWidgets.git] / include / wx / help.h
index 704244ae095f07de3541555b78e509a725245f09..e67d49358a63d7d2c337e5e9a98ab4dcb8b928d1 100644 (file)
@@ -6,12 +6,25 @@
 #ifdef __WXMSW__
     #include "wx/msw/helpwin.h"
 
-    #undef wxHelpController
-    #undef sm_classwxHelpController
     #define wxHelpController wxWinHelpController
     #define sm_classwxHelpController sm_classwxWinHelpController
 #else // !MSW
-    #include "wx/helpbase.h"
+
+/* By default, if wxHTML is compiled in, use the
+   wxHelpControllerHtml. If not, use the external help controller.
+   (of course, we shouldn't do it for wxMSW)
+*/
+
+#if wxUSE_HTML
+#   include "wx/generic/helpwxht.h"
+#   define wxHelpController wxHelpControllerHtml
+#   define sm_classwxHelpController sm_classwxHelpControllerHtml
+#else
+#   include "wx/generic/helpext.h"
+#   define wxHelpController wxExtHelpController
+#   define sm_classwxHelpController sm_classwxExtHelpController
+#endif
+
 #endif // MSW/!MSW
 
 #endif