}
}
-void wxGUIEventLoop::DoRun()
+void wxGUIEventLoop::OSXDoRun()
{
wxMacAutoreleasePool autoreleasepool;
[NSApp run];
}
-void wxGUIEventLoop::DoStop()
+void wxGUIEventLoop::OSXDoStop()
{
// only calling stop: is not enough when called from a runloop-observer,
// therefore add a dummy event, to make sure the runloop gets another round
// END move into a evtloop_osx.cpp
-void wxModalEventLoop::DoRun()
+void wxModalEventLoop::OSXDoRun()
{
wxMacAutoreleasePool pool;
[NSApp runModalForWindow:m_modalNativeWindow];
}
-void wxModalEventLoop::DoStop()
+void wxModalEventLoop::OSXDoStop()
{
[NSApp abortModal];
}
}
delete m_winDisabled;
-}
\ No newline at end of file
+}