]> git.saurik.com Git - wxWidgets.git/commitdiff
unused param warnings fixes
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Jul 2004 16:18:58 +0000 (16:18 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Jul 2004 16:18:58 +0000 (16:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28481 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/statbar/statbar.cpp

index 7761a5e1d5dee7e7fba1149db0285b6150060b3d..e70243ea8058b8f088659cf85e7eba9ab07041aa 100644 (file)
@@ -497,19 +497,19 @@ void MyFrame::OnUpdateSetStyleRaised(wxUpdateUIEvent &event)
     event.Check(m_statbarStyle == wxSB_RAISED);
 }
 
-void MyFrame::OnSetStyleNormal(wxCommandEvent &event)
+void MyFrame::OnSetStyleNormal(wxCommandEvent & WXUNUSED(event))
 {
     m_statbarStyle = wxSB_NORMAL;
     ApplyStyle();
 }
 
-void MyFrame::OnSetStyleFlat(wxCommandEvent &event)
+void MyFrame::OnSetStyleFlat(wxCommandEvent & WXUNUSED(event))
 {
     m_statbarStyle = wxSB_FLAT;
     ApplyStyle();
 }
 
-void MyFrame::OnSetStyleRaised(wxCommandEvent &event)
+void MyFrame::OnSetStyleRaised(wxCommandEvent & WXUNUSED(event))
 {
     m_statbarStyle = wxSB_RAISED;
     ApplyStyle();