backport: adding idle processing in modal loop, closes #10871

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_9_0_BRANCH@60966 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2009-06-10 05:17:26 +00:00
parent 099a8b6c90
commit c21e990708

View 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];