X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8b591249e3a242c46f865f3ece04b067cc3ddd1..217099990c2665d18d352c60058106da9a014ab8:/include/wx/help.h?ds=inline diff --git a/include/wx/help.h b/include/wx/help.h index 98f7cee571..e67d49358a 100644 --- a/include/wx/help.h +++ b/include/wx/help.h @@ -9,7 +9,22 @@ #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