]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/evtloop.h
adding OnLaunched
[wxWidgets.git] / include / wx / cocoa / evtloop.h
index 7e0d4768090ff44e1e030a58686c7b897d3ffe15..f957dd89679abba7d1847d5a94eece672f2387e1 100644 (file)
@@ -20,8 +20,7 @@ class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxEventLoopBase
 public:
     wxGUIEventLoop() { m_exitcode = 0; }
 
-    virtual int Run();
-    virtual void Exit(int rc = 0);
+    virtual void ScheduleExit(int rc = 0);
     virtual bool Pending() const;
     virtual bool Dispatch();
     virtual int DispatchTimeout(unsigned long timeout);
@@ -29,6 +28,8 @@ public:
     virtual bool YieldFor(long eventsToProcess);
 
 protected:
+    virtual int DoRun();
+
     int m_exitcode;
 
     wxDECLARE_NO_COPY_CLASS(wxGUIEventLoop);