From 4cb8539f72c2ad22db10e17fed4943a250bac4d0 Mon Sep 17 00:00:00 2001 From: Maarten Bent Date: Thu, 9 Dec 2021 18:18:28 +0100 Subject: [PATCH] Add missing wxOVERRIDE to MSWWindowProc of wxListCtrl --- include/wx/generic/listctrl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/generic/listctrl.h b/include/wx/generic/listctrl.h index ca470e3f41..774b20a7a3 100644 --- a/include/wx/generic/listctrl.h +++ b/include/wx/generic/listctrl.h @@ -239,7 +239,7 @@ private: // arrows but let the other navigation characters through #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__) virtual WXLRESULT - MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); + MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) wxOVERRIDE; #endif // __WXMSW__ WX_FORWARD_TO_SCROLL_HELPER()