fix unused parameters warnings (#9529)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@54511 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -109,17 +109,17 @@ public:
|
|||||||
virtual wxSize GetSize() = 0;
|
virtual wxSize GetSize() = 0;
|
||||||
|
|
||||||
virtual bool Activate( wxRect cell,
|
virtual bool Activate( wxRect cell,
|
||||||
wxDataViewListModel *model, unsigned int col, unsigned int row )
|
wxDataViewListModel * WXUNUSED(model), unsigned int WXUNUSED(col), unsigned int WXUNUSED(row) )
|
||||||
{ return false; }
|
{ return false; }
|
||||||
|
|
||||||
virtual bool LeftClick( wxPoint cursor, wxRect cell,
|
virtual bool LeftClick( wxPoint WXUNUSED(cursor), wxRect WXUNUSED(cell),
|
||||||
wxDataViewListModel *model, unsigned int col, unsigned int row )
|
wxDataViewListModel* WXUNUSED(model), unsigned int WXUNUSED(col), unsigned int WXUNUSED(row) )
|
||||||
{ return false; }
|
{ return false; }
|
||||||
virtual bool RightClick( wxPoint cursor, wxRect cell,
|
virtual bool RightClick( wxPoint WXUNUSED(cursor), wxRect WXUNUSED(cell),
|
||||||
wxDataViewListModel *model, unsigned int col, unsigned int row )
|
wxDataViewListModel* WXUNUSED(model), unsigned int WXUNUSED(col), unsigned int WXUNUSED(row) )
|
||||||
{ return false; }
|
{ return false; }
|
||||||
virtual bool StartDrag( wxPoint cursor, wxRect cell,
|
virtual bool StartDrag( wxPoint cursor, wxRect cell,
|
||||||
wxDataViewListModel *model, unsigned int col, unsigned int row )
|
wxDataViewListModel* WXUNUSED(model), unsigned int WXUNUSED(col), unsigned int WXUNUSED(row) )
|
||||||
{ return false; }
|
{ return false; }
|
||||||
|
|
||||||
// Create DC on request
|
// Create DC on request
|
||||||
|
Reference in New Issue
Block a user