Don't make some generic wxDataViewCtrl unnecessarily virtual

These methods are not supposed to be overridden and don't override any base
class methods neither.
This commit is contained in:
Vadim Zeitlin 2016-03-05 18:39:22 +01:00
parent a3fa628669
commit b70109ee7a

View File

@ -249,8 +249,8 @@ protected:
// Notice that row here may be invalid (i.e. >= GetRowCount()), this is not
// an error and this function simply returns an invalid item in this case.
virtual wxDataViewItem GetItemByRow( unsigned int row ) const;
virtual int GetRowByItem( const wxDataViewItem & item ) const;
wxDataViewItem GetItemByRow( unsigned int row ) const;
int GetRowByItem( const wxDataViewItem & item ) const;
// Mark the column as being used or not for sorting.
void UseColumnForSorting(int idx);