]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/helpctrl.cpp
Applied patch [ 866387 ] wxGenericDirCtrl does not accept multiple wildcards
[wxWidgets.git] / src / html / helpctrl.cpp
index 9f1de8e4098bcf27f3ec3fc61ce76c958210b6b3..2900d99d31ec39789cb912f13e478878e38c6db5 100644 (file)
 #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));
 }