From 278f4fa1d66640e6c3b61b46add30c68235646fd Mon Sep 17 00:00:00 2001 From: Graham Dawes Date: Mon, 21 Jan 2019 14:48:37 +0000 Subject: [PATCH] Add wxOVERRIDE to overriden methods --- include/wx/qt/evtloop.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/wx/qt/evtloop.h b/include/wx/qt/evtloop.h index 25ea24a8dc..d8d73576da 100644 --- a/include/wx/qt/evtloop.h +++ b/include/wx/qt/evtloop.h @@ -16,13 +16,13 @@ public: wxQtEventLoopBase(); ~wxQtEventLoopBase(); - virtual int DoRun(); - virtual void ScheduleExit(int rc = 0); - virtual bool Pending() const; - virtual bool Dispatch(); - virtual int DispatchTimeout(unsigned long timeout); - virtual void WakeUp(); - virtual void DoYieldFor(long eventsToProcess); + virtual int DoRun() wxOVERRIDE; + virtual void ScheduleExit(int rc = 0) wxOVERRIDE; + virtual bool Pending() const wxOVERRIDE; + virtual bool Dispatch() wxOVERRIDE; + virtual int DispatchTimeout(unsigned long timeout) wxOVERRIDE; + virtual void WakeUp() wxOVERRIDE; + virtual void DoYieldFor(long eventsToProcess) wxOVERRIDE; #if wxUSE_EVENTLOOP_SOURCE virtual wxEventLoopSource *AddSourceForFD(int fd, wxEventLoopSourceHandler *handler, int flags);