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:
@@ -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.
|
||||
|
Reference in New Issue
Block a user