From 1b9f57621d94644b0187ce9f18aec45dba6df57c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 6 Jul 2020 12:34:42 +0200 Subject: [PATCH] Add a forgotten wxOVERRIDE in the grid sample Fix -Winconsistent-missing-override when building this sample. --- samples/grid/griddemo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/grid/griddemo.cpp b/samples/grid/griddemo.cpp index 77b645cc6d..142a364f22 100644 --- a/samples/grid/griddemo.cpp +++ b/samples/grid/griddemo.cpp @@ -241,7 +241,7 @@ public: grid->SetCellValue(row, col, m_value); } - virtual wxGridCellEditor *Clone() const + virtual wxGridCellEditor *Clone() const wxOVERRIDE { return new MyGridStarEditor(); }