From 7df843f39662e5e1f3d244b40466e0025838d6b7 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 29 Jul 2017 20:39:26 +0200 Subject: [PATCH] Don't document wxDataViewModel notification methods as virtual This is just wrong, they're virtual in wxDataViewModelNotifier, but not in wxDataViewModel itself. Closes #17928. --- interface/wx/dataview.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/interface/wx/dataview.h b/interface/wx/dataview.h index 1d4659b177..90805b3853 100644 --- a/interface/wx/dataview.h +++ b/interface/wx/dataview.h @@ -132,7 +132,7 @@ public: Called to inform the model that all data has been cleared. The control will reread the data from the model again. */ - virtual bool Cleared(); + bool Cleared(); /** The compare function to be used by the control. The default compare @@ -365,8 +365,7 @@ public: This will eventually emit a @c wxEVT_DATAVIEW_ITEM_VALUE_CHANGED event to the user. */ - virtual bool ValueChanged(const wxDataViewItem& item, - unsigned int col); + bool ValueChanged(const wxDataViewItem& item, unsigned int col); virtual bool IsListModel() const;