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