From bdb1f15c2ba3b58506bfc6a2b058714629fa7be3 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 25 Jul 2004 16:18:58 +0000 Subject: [PATCH] unused param warnings fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28481 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/statbar/statbar.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/statbar/statbar.cpp b/samples/statbar/statbar.cpp index 7761a5e1d5..e70243ea80 100644 --- a/samples/statbar/statbar.cpp +++ b/samples/statbar/statbar.cpp @@ -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(); -- 2.45.2