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:
@@ -942,12 +942,12 @@ wxBitmap BitmapComboBoxWidgetsPage::CreateBitmap(const wxColour& colour)
|
||||
return bmp;
|
||||
}
|
||||
|
||||
void BitmapComboBoxWidgetsPage::OnDropDown(wxCommandEvent& event)
|
||||
void BitmapComboBoxWidgetsPage::OnDropDown(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
wxLogMessage(_T("Combobox dropped down"));
|
||||
}
|
||||
|
||||
void BitmapComboBoxWidgetsPage::OnCloseUp(wxCommandEvent& event)
|
||||
void BitmapComboBoxWidgetsPage::OnCloseUp(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
wxLogMessage(_T("Combobox closed up"));
|
||||
}
|
||||
|
Reference in New Issue
Block a user