Replace wxDataViewCtrl::StartEditor() with EditItem().
This is more consistent with other wxDVC methods (taking column pointer as its argument) and other DVC-like classes where the name EditLabel() is used for similar purposes. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70377 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -701,9 +701,10 @@ public:
|
||||
|
||||
virtual bool SetRowHeight( int WXUNUSED(rowHeight) ) { return false; }
|
||||
|
||||
virtual void StartEditor( const wxDataViewItem & WXUNUSED(item),
|
||||
unsigned int WXUNUSED(column) )
|
||||
{ }
|
||||
virtual void EditItem(const wxDataViewItem& item, const wxDataViewColumn *column) = 0;
|
||||
|
||||
// Use EditItem() instead
|
||||
wxDEPRECATED( void StartEditor(const wxDataViewItem& item, unsigned int column) );
|
||||
|
||||
#if wxUSE_DRAG_AND_DROP
|
||||
virtual bool EnableDragSource(const wxDataFormat& WXUNUSED(format))
|
||||
|
Reference in New Issue
Block a user