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).
This commit is contained in:
Vadim Zeitlin
2020-07-04 13:36:44 +02:00
parent 9ea0f6de3c
commit 17b3a9fa96

View File

@@ -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.