git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12102
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if ( !GetParent() && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) )
{
wxWindow *parent = wxTheApp->GetTopWindow();
- if ( parent && parent != this )
+ if ( parent && parent != this && parent->IsBeingDeleted() )
{
m_parent = parent;
gtk_window_set_transient_for( GTK_WINDOW(m_widget), GTK_WINDOW(parent->m_widget) );
if ( !GetParent() && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) )
{
wxWindow *parent = wxTheApp->GetTopWindow();
- if ( parent && parent != this )
+ if ( parent && parent != this && parent->IsBeingDeleted() )
{
m_parent = parent;
gtk_window_set_transient_for( GTK_WINDOW(m_widget), GTK_WINDOW(parent->m_widget) );
if ( !parent && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) )
{
parent = wxTheApp->GetTopWindow();
+
+ // but don't use the window which is about to be destroyed as parent
+ if ( parent->IsBeingDeleted() )
+ {
+ parent = NULL;
+ }
}
m_hWnd = (WXHWND)::CreateDialog(wxGetInstance(),