fix for GTK assert after r72696, a draw/expose_event signal may also be attached to parent
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
f0facad09d
commit
eaa8686b71
@ -2396,10 +2396,15 @@ wxWindowGTK::~wxWindowGTK()
|
||||
g_captureWindow = NULL;
|
||||
}
|
||||
|
||||
if (m_widget)
|
||||
GTKDisconnect(m_widget);
|
||||
if (m_wxwindow && m_wxwindow != m_widget)
|
||||
if (m_wxwindow)
|
||||
{
|
||||
GTKDisconnect(m_wxwindow);
|
||||
GtkWidget* parent = gtk_widget_get_parent(m_wxwindow);
|
||||
if (parent)
|
||||
GTKDisconnect(parent);
|
||||
}
|
||||
if (m_widget && m_widget != m_wxwindow)
|
||||
GTKDisconnect(m_widget);
|
||||
|
||||
// destroy children before destroying this window itself
|
||||
DestroyChildren();
|
||||
|
Loading…
Reference in New Issue
Block a user