use -Wunused-parameter with gcc for consistency with MSVC and other compilers which warn about this; fix the uncovered warnings in wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49376 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-10-23 22:19:34 +00:00
parent 87f8a3cf25
commit e4161a2a08
28 changed files with 198 additions and 333 deletions

View File

@@ -143,14 +143,16 @@ static void DoCommonMenuCallbackCode(wxMenu *menu, wxMenuEvent& event)
extern "C" {
static void gtk_menu_open_callback( GtkWidget *widget, wxMenu *menu )
static void
gtk_menu_open_callback(GtkWidget * WXUNUSED(widget), wxMenu *menu)
{
wxMenuEvent event(wxEVT_MENU_OPEN, -1, menu);
DoCommonMenuCallbackCode(menu, event);
}
static void gtk_menu_close_callback( GtkWidget *widget, wxMenuBar *menubar )
static void
gtk_menu_close_callback(GtkWidget * WXUNUSED(widget), wxMenuBar *menubar)
{
if ( !menubar->GetMenuCount() )
{
@@ -451,11 +453,11 @@ wxMenu *wxMenuBar::Remove(size_t pos)
if( frame )
frame->UpdateMenuBarSize();
wxMenubarUnsetInvokingWindow( menu, m_invokingWindow );
}
return menu;
}
@@ -1068,12 +1070,12 @@ wxMenu::~wxMenu()
if ( m_owner )
gtk_widget_destroy( m_menu );
}
// This must come after we release GTK resources above. Otherwise, GTK will
// give warnings/errors when attempting to free accelerator resources from
// child items that just were destroyed (the m_menu widget can contain
// references to accelerators in child items. Problem detected when removing
// a menu from a wxMenuBar, and the removed menu had submenus with accelerators.)
// This must come after we release GTK resources above. Otherwise, GTK will
// give warnings/errors when attempting to free accelerator resources from
// child items that just were destroyed (the m_menu widget can contain
// references to accelerators in child items. Problem detected when removing
// a menu from a wxMenuBar, and the removed menu had submenus with accelerators.)
WX_CLEAR_LIST(wxMenuItemList, m_items);
}