removed Set/GetSortAscending from wxDataViewModel and move into wxDataViewCtrl

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2007-08-16 20:53:54 +00:00
parent 754dc40969
commit b8b7b08777
3 changed files with 31 additions and 45 deletions

View File

@@ -155,9 +155,6 @@ public:
void SetSortingColumn( unsigned int col ) { m_sortingColumn = col; }
unsigned int GetSortingColumn() { return m_sortingColumn; }
void SetSortOrderAscending( bool ascending ) { m_ascending = ascending; }
bool GetSortOrderAscending() { return m_ascending; }
protected:
// the user should not delete this class directly: he should use DecRef() instead!
@@ -165,7 +162,6 @@ protected:
wxDataViewModelNotifiers m_notifiers;
unsigned int m_sortingColumn;
bool m_ascending;
};
// ---------------------------------------------------------