From: Chris Elliott Date: Tue, 24 May 2005 08:53:32 +0000 (+0000) Subject: possible fix for SF bug #1186144 (only VC tested) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c8200b5a5eaa9c893ed79cc255d1c733b451fcb9 possible fix for SF bug #1186144 (only VC tested) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34312 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/helpchm.cpp b/src/msw/helpchm.cpp index 7a5f3cb6f9..3f05606e8d 100644 --- a/src/msw/helpchm.cpp +++ b/src/msw/helpchm.cpp @@ -79,7 +79,7 @@ static bool LoadHtmlHelpLibrary() static void UnloadHtmlHelpLibrary() { if ( gs_htmlHelp ) - { + { if (wxPluginManager::UnloadLibrary( _T("HHCTRL.OCX") )) gs_htmlHelp = 0; } @@ -243,6 +243,7 @@ wxString wxCHMHelpController::GetValidFilename(const wxString& file) const wxCHMHelpController::~wxCHMHelpController() { + gs_htmlHelp(GetSuitableHWND(), 0, HH_CLOSE_ALL, 0L); UnloadHtmlHelpLibrary(); }