From 9298a1c2ac31868d053840359023ed24becfb42c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 9 Dec 2008 13:36:23 +0000 Subject: [PATCH] use a slightly less ugly way to conditionally suppress unused parameter warnings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57216 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/mdi/mdi.cpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/samples/mdi/mdi.cpp b/samples/mdi/mdi.cpp index f923e54..047adfa 100644 --- a/samples/mdi/mdi.cpp +++ b/samples/mdi/mdi.cpp @@ -229,13 +229,7 @@ void MyFrame::OnNewWindow(wxCommandEvent& WXUNUSED(event) ) subframe->Show(true); } -void MyFrame::OnSize(wxSizeEvent& - #ifdef __WXUNIVERSAL__ - event - #else - WXUNUSED(event) - #endif - ) +void MyFrame::OnSize(wxSizeEvent& event) { int w, h; GetClientSize(&w, &h); @@ -248,6 +242,8 @@ void MyFrame::OnSize(wxSizeEvent& // be done. #ifdef __WXUNIVERSAL__ event.Skip(); +#else + wxUnusedVar(event); #endif } -- 2.7.4