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
This commit is contained in:
J. Russell Smyth 1999-07-13 17:56:35 +00:00
parent 7d6d2cd462
commit 602e68af58

View File

@ -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);