X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/96ac065f9ecc4d3d5c2c3ad6521091cc5d920024..a290fa5a7deebe9d96c0c0089d18e27d4bd9b624:/src/common/framecmn.cpp diff --git a/src/common/framecmn.cpp b/src/common/framecmn.cpp index 78d72ccbd0..eadab8e700 100644 --- a/src/common/framecmn.cpp +++ b/src/common/framecmn.cpp @@ -128,20 +128,20 @@ bool wxFrameBase::IsOneOfBars(const wxWindow *win) const { #if wxUSE_MENUS if ( win == GetMenuBar() ) - return TRUE; + return true; #endif // wxUSE_MENUS #if wxUSE_STATUSBAR if ( win == GetStatusBar() ) - return TRUE; + return true; #endif // wxUSE_STATUSBAR #if wxUSE_TOOLBAR if ( win == GetToolBar() ) - return TRUE; + return true; #endif // wxUSE_TOOLBAR - return FALSE; + return false; } // ---------------------------------------------------------------------------- @@ -155,7 +155,7 @@ wxPoint wxFrameBase::GetClientAreaOrigin() const { wxPoint pt = wxTopLevelWindow::GetClientAreaOrigin(); -#if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__) +#if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) wxToolBar *toolbar = GetToolBar(); if ( toolbar && toolbar->IsShown() ) { @@ -185,7 +185,7 @@ bool wxFrameBase::ProcessCommand(int id) #if wxUSE_MENUS wxMenuBar *bar = GetMenuBar(); if ( !bar ) - return FALSE; + return false; wxCommandEvent commandEvent(wxEVT_COMMAND_MENU_SELECTED, id); commandEvent.SetEventObject(this); @@ -194,7 +194,7 @@ bool wxFrameBase::ProcessCommand(int id) if (item) { if (!item->IsEnabled()) - return TRUE; + return true; if (item->IsCheckable()) { @@ -206,9 +206,9 @@ bool wxFrameBase::ProcessCommand(int id) } GetEventHandler()->ProcessEvent(commandEvent); - return TRUE; + return true; #else // !wxUSE_MENUS - return FALSE; + return false; #endif // wxUSE_MENUS/!wxUSE_MENUS } @@ -253,7 +253,11 @@ void wxFrameBase::OnMenuHighlight(wxMenuEvent& event) #endif // wxUSE_STATUSBAR } +#if !wxUSE_IDLEMENUUPDATES void wxFrameBase::OnMenuOpen(wxMenuEvent& event) +#else +void wxFrameBase::OnMenuOpen(wxMenuEvent& WXUNUSED(event)) +#endif { #if !wxUSE_IDLEMENUUPDATES DoMenuUpdates(event.GetMenu()); @@ -378,7 +382,7 @@ bool wxFrameBase::ShowMenuHelp(wxStatusBar *WXUNUSED(statbar), int menuId) return !helpString.IsEmpty(); #else // !wxUSE_MENUS - return FALSE; + return false; #endif // wxUSE_MENUS/!wxUSE_MENUS } @@ -422,6 +426,9 @@ void wxFrameBase::DoGiveHelp(const wxString& text, bool show) } statbar->SetStatusText(help, m_statusBarPane); +#else + wxUnusedVar(text); + wxUnusedVar(show); #endif // wxUSE_STATUSBAR } @@ -519,7 +526,7 @@ void wxFrameBase::SetMenuBar(wxMenuBar *menubar) DetachMenuBar(); - AttachMenuBar(menubar); + this->AttachMenuBar(menubar); } #endif // wxUSE_MENUS