From 17b3a9fa96d17b930b198f43856514a428c9583e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 4 Jul 2020 13:36:44 +0200 Subject: [PATCH] Add missing wxOVERRIDE to wxGridCellActivatableEditor Fix -Winconsistent-missing-override due to the changes of ca84560350 (Add wxGridCellActivatableEditor and show it in the grid sample, 2020-06-30). --- include/wx/generic/grid.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/generic/grid.h b/include/wx/generic/grid.h index a70a28891a..093063eb2a 100644 --- a/include/wx/generic/grid.h +++ b/include/wx/generic/grid.h @@ -530,8 +530,8 @@ public: // In this class these methods must be overridden. virtual wxGridActivationResult TryActivate(int row, int col, wxGrid* grid, - const wxGridActivationSource& actSource) = 0; - virtual void DoActivate(int row, int col, wxGrid* grid) = 0; + const wxGridActivationSource& actSource) wxOVERRIDE = 0; + virtual void DoActivate(int row, int col, wxGrid* grid) wxOVERRIDE = 0; // All the other methods that normally must be implemented in an editor are // defined as just stubs below, as they should be never called.