const wxChar wxDataViewCtrlNameStr[] = wxT("dataviewCtrl");
+bool operator == (const wxDataViewItem &left, const wxDataViewItem &right)
+{
+ return (left.GetID() == right.GetID() );
+}
+
+
// ---------------------------------------------------------
-// wxDataViewListModel
+// wxDataViewModel
// ---------------------------------------------------------
wxDataViewModel::wxDataViewModel()
m_model = NULL;
m_cols.DeleteContents( true );
m_eventNotifier = NULL;
+ m_expander_column = 0;
+ m_indent = 8;
}
wxDataViewCtrlBase::~wxDataViewCtrlBase()