From 6121b08b678113d4be3636255b5d151d8c6f6255 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 23 May 2018 17:09:09 +0200 Subject: [PATCH] Compilation fix for wxGUIEventLoop in wxDFB Rename YieldFor() to DoYieldFor() in the header too. This was broken by f740cc38817430c6989182e5d1d970fb043f9b4a --- include/wx/dfb/evtloop.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/wx/dfb/evtloop.h b/include/wx/dfb/evtloop.h index 7a0dd0e056..c328e21d1e 100644 --- a/include/wx/dfb/evtloop.h +++ b/include/wx/dfb/evtloop.h @@ -24,11 +24,12 @@ class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxConsoleEventLoop public: wxGUIEventLoop(); - virtual bool YieldFor(long eventsToProcess); - // returns DirectFB event buffer used by wx static wxIDirectFBEventBufferPtr GetDirectFBEventBuffer(); +protected: + virtual void DoYieldFor(long eventsToProcess); + private: static void InitBuffer(); static void CleanUp();