]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/iphone/evtloop.mm
Use wxString's empty() when checking if the string is (non-)empty throughout wx.
[wxWidgets.git] / src / osx / iphone / evtloop.mm
index e050cdd0ce5829832a09eb8347b3733eeee2e7d3..2a78c6817850f45f26ca82a9ae39795d21e4f1f4 100644 (file)
@@ -97,6 +97,22 @@ void wxGUIEventLoop::DoRun()
     }
 }
 
+int wxGUIEventLoop::DoDispatchTimeout(unsigned long timeout)
+{
+    return wxCFEventLoop::DoDispatchTimeout(timeout);
+}
+
+void wxGUIEventLoop::DoStop()
+{
+    return wxCFEventLoop::DoStop();
+}
+
+CFRunLoopRef wxGUIEventLoop::CFGetCurrentRunLoop() const
+{
+    return wxCFEventLoop::CFGetCurrentRunLoop();
+}
+
+
 // TODO move into a evtloop_osx.cpp
 
 wxModalEventLoop::wxModalEventLoop(wxWindow *modalWindow)