From 26715a1fe03da2c487664a6d6c1090560764419b Mon Sep 17 00:00:00 2001 From: Jeff Bland Date: Fri, 18 May 2018 06:52:13 -0600 Subject: [PATCH] Fix warning with missing override --- include/wx/apptrait.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/apptrait.h b/include/wx/apptrait.h index 51168eb5d6..f93b90a621 100644 --- a/include/wx/apptrait.h +++ b/include/wx/apptrait.h @@ -194,7 +194,7 @@ class WXDLLIMPEXP_BASE wxConsoleAppTraitsBase : public wxAppTraits { public: #if !wxUSE_CONSOLE_EVENTLOOP - virtual wxEventLoopBase *CreateEventLoop() { return NULL; } + virtual wxEventLoopBase *CreateEventLoop() wxOVERRIDE { return NULL; } #endif // !wxUSE_CONSOLE_EVENTLOOP #if wxUSE_LOG