X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/10816efb2cb6561a227a87de6d5f8b5750c2705d..edd6813c826edc2311548da53eb83e7f1bc18d2b:/src/common/framecmn.cpp diff --git a/src/common/framecmn.cpp b/src/common/framecmn.cpp index e93d1010e1..c1a25b5a8e 100644 --- a/src/common/framecmn.cpp +++ b/src/common/framecmn.cpp @@ -133,6 +133,8 @@ bool wxFrameBase::IsOneOfBars(const wxWindow *win) const return true; #endif // wxUSE_TOOLBAR + wxUnusedVar(win); + return false; } @@ -209,9 +211,10 @@ bool wxFrameBase::ProcessCommand(int id) } } - GetEventHandler()->ProcessEvent(commandEvent); - return true; + return HandleWindowEvent(commandEvent); #else // !wxUSE_MENUS + wxUnusedVar(id); + return false; #endif // wxUSE_MENUS/!wxUSE_MENUS } @@ -435,7 +438,7 @@ void wxFrameBase::DoGiveHelp(const wxString& help, bool show) statbar->SetStatusText(text, m_statusBarPane); #else - wxUnusedVar(text); + wxUnusedVar(help); wxUnusedVar(show); #endif // wxUSE_STATUSBAR }