]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/help.h
fixes for wxFontMapper endless recursion
[wxWidgets.git] / include / wx / help.h
index 9622355ff6aa3a2aa4d007e428cf535b4d6e2903..98f7cee571d1bfbddebe130a9063073864539e5a 100644 (file)
@@ -1,13 +1,16 @@
-#ifndef __HELPH_BASE__
-#define __HELPH_BASE__
-
-#ifdef __WINDOWS__
-#include "wx/msw/helpwin.h"
-#elif defined(__GTK__)
-#include "wx/generic/helphtml.h"
-#else
-#include "wx/generic/helpxlp.h"
-#endif
+#ifndef _WX_HELP_H_BASE_
+#define _WX_HELP_H_BASE_
+
+#include "wx/helpbase.h"
+
+#ifdef __WXMSW__
+    #include "wx/msw/helpwin.h"
+
+    #define wxHelpController wxWinHelpController
+    #define sm_classwxHelpController sm_classwxWinHelpController
+#else // !MSW
+    #include "wx/helpbase.h"
+#endif // MSW/!MSW
 
 #endif
-    // __HELPH_BASE__
+    // _WX_HELP_H_BASE_