From 602e68af586e9d729b9f30da210261aeb11a3079 Mon Sep 17 00:00:00 2001 From: "J. Russell Smyth" Date: Tue, 13 Jul 1999 17:56:35 +0000 Subject: [PATCH] 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 --- src/html/htmlhelp.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); -- 2.47.2