Make some wxDataViewCustomRenderer virtuals consistent across platforms.
Add missing WXDLLIMPEXP_ADV. Add missing impl for wxDataViewEvent::GetPosition git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -725,7 +725,7 @@ public:
|
||||
wxDataViewColumn *GetDataViewColumn() const { return m_column; }
|
||||
|
||||
// for wxEVT_DATAVIEW_CONTEXT_MENU only
|
||||
wxPoint GetPosition() const;
|
||||
wxPoint GetPosition() const { return m_pos; }
|
||||
void SetPosition( int x, int y ) { m_pos.x = x; m_pos.y = y; }
|
||||
|
||||
virtual wxEvent *Clone() const { return new wxDataViewEvent(*this); }
|
||||
|
Reference in New Issue
Block a user