return true;
}
- virtual bool Activate( wxRect WXUNUSED(cell),
+ virtual bool Activate( const wxRect& WXUNUSED(cell),
wxDataViewModel *WXUNUSED(model),
const wxDataViewItem &WXUNUSED(item),
unsigned int WXUNUSED(col) )
return false;
}
- virtual bool LeftClick( wxPoint cursor, wxRect WXUNUSED(cell),
+ virtual bool LeftClick(const wxPoint& cursor,
+ const wxRect& WXUNUSED(cell),
wxDataViewModel *WXUNUSED(model),
const wxDataViewItem &WXUNUSED(item),
unsigned int WXUNUSED(col) )
MyFrame *frame =
new MyFrame(NULL, "wxDataViewCtrl sample", 40, 40, 1000, 540);
- SetTopWindow(frame);
frame->Show(true);
return true;