]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/datavcmn.cpp
wxDataViewCtrl now with editable text and multiple
[wxWidgets.git] / src / common / datavcmn.cpp
index cf065b765a6960f7749b1db79ec5f5b0ceab7515..e3f74ccac1457a613f0dfc065bc2fba38d3d80cb 100644 (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;
 }