fix harmless warnings (mostly about unused parameters/variables)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61310 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-07-03 12:48:44 +00:00
parent bcb6619fbe
commit 8a28bf768c
9 changed files with 60 additions and 40 deletions

View File

@@ -328,7 +328,7 @@ void MyDialog::OnAlignButton(wxCommandEvent& WXUNUSED(ev))
Layout();
}
void MyDialog::OnPaneChanged(wxCollapsiblePaneEvent &event)
void MyDialog::OnPaneChanged(wxCollapsiblePaneEvent& WXUNUSED(event))
{
wxLogDebug(wxT("The pane has just been %s by the user"),
event.GetCollapsed() ? wxT("collapsed") : wxT("expanded"));