updated to derive from wxEventLoopManual

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-01-13 01:31:37 +00:00
parent 71e86b08be
commit b80e8ac983

View File

@@ -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);