don't select the window about to be deleted as parent for modal dialog in ShowModal()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@45606 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-04-23 20:11:11 +00:00
parent 0fe70eff13
commit d420454eb1

View File

@@ -115,14 +115,20 @@ int wxDialog::ShowModal()
// forbidden
if ( !GetParent() && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) )
{
wxWindow *parent = wxTheApp->GetTopWindow();
extern WXDLLIMPEXP_DATA_CORE(wxList) wxPendingDelete;
wxWindow * const parent = wxTheApp->GetTopWindow();
if ( parent &&
parent != this &&
!parent->IsBeingDeleted() &&
!(parent->GetExtraStyle() & wxWS_EX_TRANSIENT) )
parent->IsShownOnScreen() &&
!parent->IsBeingDeleted() &&
!wxPendingDelete.Member(parent) &&
!(parent->GetExtraStyle() & wxWS_EX_TRANSIENT) )
{
m_parent = parent;
gtk_window_set_transient_for( GTK_WINDOW(m_widget), GTK_WINDOW(parent->m_widget) );
gtk_window_set_transient_for( GTK_WINDOW(m_widget),
GTK_WINDOW(parent->m_widget) );
}
}