From: J. Russell Smyth Date: Tue, 13 Jul 1999 17:56:35 +0000 (+0000) Subject: Removed default parameter setting for wxHtmlHelpControler::AddBook causing X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/602e68af586e9d729b9f30da210261aeb11a3079?ds=inline Removed default parameter setting for wxHtmlHelpControler::AddBook causing VC++ to bomb compile git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2993 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/htmlhelp.cpp b/src/html/htmlhelp.cpp index 22d69b06cd..0f75ef0580 100644 --- a/src/html/htmlhelp.cpp +++ b/src/html/htmlhelp.cpp @@ -219,7 +219,7 @@ static int IndexCompareFunc(const void *a, const void *b) -bool wxHtmlHelpController::AddBook(const wxString& book, bool show_wait_msg = FALSE) +bool wxHtmlHelpController::AddBook(const wxString& book, bool show_wait_msg) { wxFSFile *fi; wxFileSystem fsys; @@ -532,7 +532,9 @@ void wxHtmlHelpController::CreateHelpWindow() return; } +#if wxUSE_BUSYINFO wxBusyInfo busyinfo(_("Preparing help window...")); +#endif if (m_Config) ReadCustomization(m_Config, m_ConfigRoot);