X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/baa9caff7e78284b251df3ad7ec0cf0c096ed88c..5d644707ca96dcaa63dc5a24c9eb5c2b7ee0b50d:/include/wx/help.h diff --git a/include/wx/help.h b/include/wx/help.h index 3e2ad36dea..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/generic/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_