X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/88ac883a0d005437c97a60d8195bd5e4719b1154..53c9228ead0c7c0955bdc882fc2ccc9aae8342ba:/include/wx/help.h diff --git a/include/wx/help.h b/include/wx/help.h index 3c7cd47280..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,11 +11,20 @@ #define wxHelpController wxWinHelpController #define sm_classwxHelpController sm_classwxWinHelpController #else // !MSW - #include "wx/generic/helpext.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_