X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1c4f8f8d180afa03110f52eb95f9b083088f5c03..f2c2fa4d62b34608e21b04f8010149945aebda70:/src/common/framecmn.cpp?ds=inline diff --git a/src/common/framecmn.cpp b/src/common/framecmn.cpp index 39055b4afb..d5bbdbfb1c 100644 --- a/src/common/framecmn.cpp +++ b/src/common/framecmn.cpp @@ -215,7 +215,7 @@ bool wxFrameBase::ProcessCommand(int id) // default resizing behaviour - if only ONE subwindow, resize to fill the // whole client area -void wxFrameBase::OnSize(wxSizeEvent& event) +void wxFrameBase::OnSize(wxSizeEvent& WXUNUSED(event)) { // if we're using constraints - do use them #if wxUSE_CONSTRAINTS @@ -265,9 +265,9 @@ void wxFrameBase::OnSize(wxSizeEvent& event) // for whatever reasons, wxGTK wants to have a small offset - it // probably looks better with it? #ifdef __WXGTK__ - static const int ofs = 0; -#else static const int ofs = 1; +#else + static const int ofs = 0; #endif child->SetSize(ofs, ofs, clientW - 2*ofs, clientH - 2*ofs); @@ -276,7 +276,7 @@ void wxFrameBase::OnSize(wxSizeEvent& event) } // The default implementation for the close window event. -void wxFrameBase::OnCloseWindow(wxCloseEvent& event) +void wxFrameBase::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) { Destroy(); }