]> git.saurik.com Git - wxWidgets.git/commitdiff
avoiding dangerous redraw events for windows that are on their way out…
authorStefan Csomor <csomor@advancedconcepts.ch>
Tue, 12 Jun 2012 23:32:46 +0000 (23:32 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Tue, 12 Jun 2012 23:32:46 +0000 (23:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71735 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/toplevel_osx.cpp

index b660d8f474cabd3e06aae1ab07185dd1cdf64346..f92665932ea44b03ed34c598bf93195349accfc8 100644 (file)
@@ -106,7 +106,13 @@ bool wxTopLevelWindowMac::Destroy()
     if (m_nowpeer && m_nowpeer->GetWXWindow())
         ClearKeyboardFocus( (WindowRef)m_nowpeer->GetWXWindow() );
 #endif
-    return wxTopLevelWindowBase::Destroy();
+    // delayed destruction: the tlw will be deleted during the next idle
+    // loop iteration
+    if ( !wxPendingDelete.Member(this) )
+        wxPendingDelete.Append(this);
+    
+    Hide();
+    return true;
 }