From: David Elliott Date: Wed, 25 Jun 2003 02:10:36 +0000 (+0000) Subject: Changed bool WakeUpIdle() to void to match base class X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bf25264013271a7827b82be5f6c9afa7fdf444ae?hp=fb8ee64d78c8e7e4424359cdd30835a4bcfc1798 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 --- diff --git a/include/wx/cocoa/app.h b/include/wx/cocoa/app.h index 1e2453a0a5..357fda54f4 100644 --- a/include/wx/cocoa/app.h +++ b/include/wx/cocoa/app.h @@ -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);