unused param warnings fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28481 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-07-25 16:18:58 +00:00
parent c2919ab326
commit bdb1f15c2b

View File

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