Set/GetExpanderColumn() should use wxDataViewColumn, not unsigned int
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48380 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -465,9 +465,9 @@ public:
|
||||
virtual bool ClearColumns();
|
||||
virtual wxDataViewColumn* GetColumn( unsigned int pos ) const;
|
||||
|
||||
void SetExpanderColumn( unsigned int col )
|
||||
void SetExpanderColumn( wxDataViewColumn *col )
|
||||
{ m_expander_column = col ; DoSetExpanderColumn(); }
|
||||
unsigned int GetExpanderColumn() const
|
||||
wxDataViewColumn *GetExpanderColumn() const
|
||||
{ return m_expander_column; }
|
||||
|
||||
void SetIndent( int indent )
|
||||
@@ -497,7 +497,7 @@ protected:
|
||||
private:
|
||||
wxDataViewModel *m_model;
|
||||
wxList m_cols;
|
||||
unsigned int m_expander_column;
|
||||
wxDataViewColumn *m_expander_column;
|
||||
int m_indent ;
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user