more WXUNUSED() here and there

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-12-15 17:14:58 +00:00
parent e7bcded47c
commit 3ed2e7ce82
3 changed files with 28 additions and 8 deletions

View File

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