]> git.saurik.com Git - wxWidgets.git/commitdiff
adding idle processing in modal loop, closes #10871
authorStefan Csomor <csomor@advancedconcepts.ch>
Wed, 10 Jun 2009 05:15:24 +0000 (05:15 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Wed, 10 Jun 2009 05:15:24 +0000 (05:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/cocoa/dialog.mm

index b195a8633490fa9f3a58818929a6141bb5a4d3e4..c975bdf1e8b1eaf4ce65aab89f1550460153c803 100644 (file)
@@ -47,7 +47,6 @@ void wxDialog::DoShowModal()
     NSWindow* theWindow = GetWXWindow();
     
     NSModalSession session = [NSApp beginModalSessionForWindow:theWindow];
-    int response = 0;
     while (IsModal()) 
     {
         wxMacAutoreleasePool autoreleasepool;
@@ -55,7 +54,10 @@ void wxDialog::DoShowModal()
         // alerts might set this to stopped as well, so it would be
         // unsafe
         [NSApp runModalSession:session];
-        // TODO Idle
+
+        // do some idle processing 
+        if (wxTheApp) 
+            wxTheApp->ProcessIdle(); 
     }
     [NSApp endModalSession:session];