]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/cocoa/evtloop.h
Fixed typo.
[wxWidgets.git] / include / wx / osx / cocoa / evtloop.h
index 8fc7c332581d1d9bc81b318211bbe8109f22ed2a..afccc7a92daa4a7c69029bc724e3f48026f2c6fd 100644 (file)
@@ -16,19 +16,14 @@ class WXDLLIMPEXP_BASE wxGUIEventLoop : public wxCFEventLoop
 public:
     wxGUIEventLoop();
 
-    // implement/override base class pure virtual
-    virtual bool Pending() const;
-    virtual bool Dispatch();
-    virtual int DispatchTimeout(unsigned long timeout);
+protected:
+    virtual int DoDispatchTimeout(unsigned long timeout);
 
-    virtual void WakeUp();
-    virtual bool YieldFor(long eventsToProcess);
+    virtual void DoRun();
 
-protected:
-    virtual CFRunLoopRef CFGetCurrentRunLoop() const;
+    virtual void DoStop();
 
-private:
-    double m_sleepTime;
+    virtual CFRunLoopRef CFGetCurrentRunLoop() const;
 };
 
 #endif // _WX_OSX_COCOA_EVTLOOP_H_