X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e2fc40b4786f7ae8c255ce1184441bd94d9554a0..d2e66707deb10dea6f92e3e4092f8a43ef942a5d:/src/palmos/evtloop.cpp diff --git a/src/palmos/evtloop.cpp b/src/palmos/evtloop.cpp index 01bd21e982..6b15d3d2cd 100644 --- a/src/palmos/evtloop.cpp +++ b/src/palmos/evtloop.cpp @@ -6,7 +6,7 @@ // Created: 10.14.04 // RCS-ID: $Id$ // Copyright: (c) William Osborne -// License: wxWindows licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -33,7 +33,6 @@ #include "wx/tooltip.h" #include "wx/except.h" -#include "wx/ptr_scpd.h" #if wxUSE_THREADS #include "wx/thread.h" @@ -135,8 +134,18 @@ bool wxGUIEventLoop::Dispatch() return false; } +int wxGUIEventLoop::DispatchTimeout(unsigned long timeout) +{ + return -1; +} + void wxGUIEventLoop::WakeUp() { return; } +bool wxGUIEventLoop::YieldFor(long eventsToProcess) +{ + return true; +} +