Changed bool WakeUpIdle() to void to match base class

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21381 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2003-06-25 02:10:36 +00:00
parent fb8ee64d78
commit bf25264013

View File

@ -55,7 +55,7 @@ public:
virtual bool Yield(bool onlyIfNeeded = FALSE);
virtual bool ProcessIdle();
virtual bool WakeUpIdle() { CocoaRequestIdle(); }
virtual void WakeUpIdle() { CocoaRequestIdle(); }
/* Idle Processing */
void OnIdle(wxIdleEvent& event);