X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/69b5cec2b0993ce4cd56f2e50ab94e5ebd20069c..efe66bbc0e9f463a6dd3ad49717474dd801bebf3:/src/html/helpctrl.cpp?ds=inline diff --git a/src/html/helpctrl.cpp b/src/html/helpctrl.cpp index 9f1de8e409..2900d99d31 100644 --- a/src/html/helpctrl.cpp +++ b/src/html/helpctrl.cpp @@ -38,6 +38,12 @@ #if wxUSE_HELP #include "wx/tipwin.h" #endif + + +#if wxUSE_LIBMSPACK +#include "wx/html/forcelnk.h" +FORCE_LINK(wxhtml_chm_support) +#endif IMPLEMENT_DYNAMIC_CLASS(wxHtmlHelpController, wxHelpControllerBase) @@ -187,10 +193,15 @@ bool wxHtmlHelpController::Initialize(const wxString& file) { actualFilename = dir + filename + wxString(wxT(".hhp")); if (!wxFileExists(actualFilename)) - return FALSE; + { +#if wxUSE_LIBMSPACK + actualFilename = dir + filename + wxString(wxT(".chm")); + if (!wxFileExists(actualFilename)) +#endif + return false; + } } } - return AddBook(wxFileName(actualFilename)); }