X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a0b1b91fe6ea9ee743ca658cb427d64052a8f57b..cb71578cae7032226e8650e1a119b6eb043507b8:/src/html/helpctrl.cpp?ds=sidebyside diff --git a/src/html/helpctrl.cpp b/src/html/helpctrl.cpp index 13b00c1490..c527460761 100644 --- a/src/html/helpctrl.cpp +++ b/src/html/helpctrl.cpp @@ -83,7 +83,7 @@ bool wxHtmlHelpController::AddBook(const wxString& book, bool show_wait_msg) #if wxUSE_BUSYINFO wxBusyInfo* busy = NULL; wxString info; - if (show_wait_msg) + if (show_wait_msg) { info.Printf(_("Adding book %s"), book.c_str()); busy = new wxBusyInfo(info); @@ -93,7 +93,7 @@ bool wxHtmlHelpController::AddBook(const wxString& book, bool show_wait_msg) #if wxUSE_BUSYINFO if (show_wait_msg) delete busy; -#endif +#endif return retval; } @@ -113,7 +113,7 @@ void wxHtmlHelpController::CreateHelpWindow() return ; } - if (m_Config == NULL) + if (m_Config == NULL) { m_Config = wxConfigBase::Get(FALSE); if (m_Config != NULL) @@ -211,7 +211,6 @@ bool wxHtmlHelpController::DisplayTextPopup(const wxString& text, const wxPoint& return TRUE; } - #endif return FALSE; } @@ -247,20 +246,4 @@ bool wxHtmlHelpController::Quit() return TRUE; } -// Sets the specified book or all books to have the given base path -void wxHtmlHelpController::SetBookBasePath(const wxString& basePath, int which) -{ - size_t i; - for (i = 0; i < m_helpData.GetBookRecArray().Count(); i++ ) - { - if (i == (size_t) which || which == -1) - { - wxHtmlBookRecord& book = m_helpData.GetBookRecArray()[i]; - book.SetBasePath(basePath); - } - if (i == (size_t) which) - return; - } -} - #endif