fix for the bug introduced by the last commit: don't quit the program when a standard msg box is closed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -86,12 +86,12 @@ bool wxTopLevelWindowBase::Destroy()
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* static */
|
||||
bool wxTopLevelWindowBase::IsLastBeforeExit()
|
||||
bool wxTopLevelWindowBase::IsLastBeforeExit() const
|
||||
{
|
||||
// we exit the application if there are no more top level windows left
|
||||
// normally but wxApp can prevent this from happening
|
||||
return (wxTopLevelWindows.GetCount() == 1) &&
|
||||
return wxTopLevelWindows.GetCount() == 1 &&
|
||||
wxTopLevelWindows.GetFirst()->GetData() == (wxWindow *)this &&
|
||||
wxTheApp && wxTheApp->GetExitOnFrameDelete();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user