From: Vadim Zeitlin Date: Fri, 13 Jan 2006 01:31:37 +0000 (+0000) Subject: updated to derive from wxEventLoopManual X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b80e8ac983cb2f552abb5806c87839a83020725b updated to derive from wxEventLoopManual git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/evtloop.h b/include/wx/msw/evtloop.h index 1d745152bc..2187942a73 100644 --- a/include/wx/msw/evtloop.h +++ b/include/wx/msw/evtloop.h @@ -22,7 +22,6 @@ public: wxEventLoop(); // implement base class pure virtuals - virtual void Exit(int rc = 0); virtual bool Pending() const; virtual bool Dispatch(); @@ -52,6 +51,10 @@ public: } protected: + // override/implement base class virtuals + virtual void WakeUp(); + virtual void OnNextIteration(); + // check if the given window is a child of ms_winCritical (which must be // non NULL) static bool IsChildOfCriticalWindow(wxWindowMSW *win);