Add a forgotten wxOVERRIDE in the grid sample

Fix -Winconsistent-missing-override when building this sample.
This commit is contained in:
Vadim Zeitlin
2020-07-06 12:34:42 +02:00
parent de6b4e4095
commit 1b9f57621d

View File

@@ -241,7 +241,7 @@ public:
grid->SetCellValue(row, col, m_value); grid->SetCellValue(row, col, m_value);
} }
virtual wxGridCellEditor *Clone() const virtual wxGridCellEditor *Clone() const wxOVERRIDE
{ {
return new MyGridStarEditor(); return new MyGridStarEditor();
} }