Compilation fix for wxGUIEventLoop in wxDFB

Rename YieldFor() to DoYieldFor() in the header too.

This was broken by f740cc3881
This commit is contained in:
Vadim Zeitlin
2018-05-23 17:09:09 +02:00
parent 9b4855ea5e
commit 6121b08b67

View File

@@ -24,11 +24,12 @@ class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxConsoleEventLoop
public: public:
wxGUIEventLoop(); wxGUIEventLoop();
virtual bool YieldFor(long eventsToProcess);
// returns DirectFB event buffer used by wx // returns DirectFB event buffer used by wx
static wxIDirectFBEventBufferPtr GetDirectFBEventBuffer(); static wxIDirectFBEventBufferPtr GetDirectFBEventBuffer();
protected:
virtual void DoYieldFor(long eventsToProcess);
private: private:
static void InitBuffer(); static void InitBuffer();
static void CleanUp(); static void CleanUp();