From e0c705648f43abb04b7d5a3c1a03243e681bc2be Mon Sep 17 00:00:00 2001 From: Tobias Taschner Date: Mon, 8 Feb 2021 09:18:10 +0100 Subject: [PATCH] Add missing wxOVERRIDE to wxWebViewFactoryWebKit --- include/wx/osx/webview_webkit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/osx/webview_webkit.h b/include/wx/osx/webview_webkit.h index 1b5fd57b97..6bd6da02f3 100644 --- a/include/wx/osx/webview_webkit.h +++ b/include/wx/osx/webview_webkit.h @@ -113,14 +113,14 @@ private: class WXDLLIMPEXP_WEBVIEW wxWebViewFactoryWebKit : public wxWebViewFactory { public: - virtual wxWebView* Create() { return new wxWebViewWebKit; } + virtual wxWebView* Create() wxOVERRIDE { return new wxWebViewWebKit; } virtual wxWebView* Create(wxWindow* parent, wxWindowID id, const wxString& url = wxWebViewDefaultURLStr, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, - const wxString& name = wxASCII_STR(wxWebViewNameStr)) + const wxString& name = wxASCII_STR(wxWebViewNameStr)) wxOVERRIDE { return new wxWebViewWebKit(parent, id, url, pos, size, style, name); } virtual wxVersionInfo GetVersionInfo() wxOVERRIDE; };