fix for glib critical errors when closing an mdi child
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
0d29a4828e
commit
f03789294f
@ -989,12 +989,13 @@ wxMenu::~wxMenu()
|
|||||||
{
|
{
|
||||||
// see wxMenu::Init
|
// see wxMenu::Init
|
||||||
g_object_unref(m_menu);
|
g_object_unref(m_menu);
|
||||||
g_object_unref( m_accel );
|
|
||||||
|
|
||||||
// if the menu is inserted in another menu at this time, there was
|
// if the menu is inserted in another menu at this time, there was
|
||||||
// one more reference to it:
|
// one more reference to it:
|
||||||
if ( m_owner )
|
if ( m_owner )
|
||||||
gtk_widget_destroy( m_menu );
|
gtk_widget_destroy( m_menu );
|
||||||
|
|
||||||
|
g_object_unref(m_accel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user