wxDataViewCtrl now with editable text and multiple

views for the same data model (in the sample).


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37682 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-02-23 13:34:15 +00:00
parent a237731e1c
commit a7f61f762d
5 changed files with 129 additions and 21 deletions

View File

@@ -83,10 +83,10 @@ bool wxDataViewListModel::RowChanged( size_t row )
return false;
}
bool wxDataViewListModel::ValueChanged( size_t row, size_t col )
bool wxDataViewListModel::ValueChanged( size_t col, size_t row )
{
if (m_notifier)
return m_notifier->RowAppended();
return m_notifier->ValueChanged( col, row );
return false;
}