]> git.saurik.com Git - wxWidgets.git/commitdiff
No longer break idle (and indeed all) event handling
authorRobert Roebling <robert@roebling.de>
Thu, 7 Dec 2006 21:38:09 +0000 (21:38 +0000)
committerRobert Roebling <robert@roebling.de>
Thu, 7 Dec 2006 21:38:09 +0000 (21:38 +0000)
    after using the assert dialog.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43861 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/app.cpp

index e7eef12e68bf988e87710cc40b521ea87c81abbe..a75f0f47b73a1745a6d85d28eb4cb85d6d2ed138 100644 (file)
@@ -616,11 +616,14 @@ void wxApp::OnAssertFailure(const wxChar *file,
                             const wxChar* cond,
                             const wxChar *msg)
 {
-    m_isInAssert = true;
+    // This doesn't seem to be required anymore. Indeed,
+    // it breaks any code from working after a suppressed
+    // assert.
+    // m_isInAssert = true;
 
     wxAppBase::OnAssertFailure(file, line, func, cond, msg);
 
-    m_isInAssert = false;
+    // m_isInAssert = false;
 }
 
 #endif // __WXDEBUG__