git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60965
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
NSWindow* theWindow = GetWXWindow();
NSModalSession session = [NSApp beginModalSessionForWindow:theWindow];
- int response = 0;
while (IsModal())
{
wxMacAutoreleasePool autoreleasepool;
// 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];