fix unused parameter warning
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -27,10 +27,10 @@ class MyDllRenderer : public wxDelegateRendererNative
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// draw the header control button (used by wxListCtrl)
|
// draw the header control button (used by wxListCtrl)
|
||||||
virtual void DrawHeaderButton(wxWindow *win,
|
virtual void DrawHeaderButton(wxWindow * WXUNUSED(win),
|
||||||
wxDC& dc,
|
wxDC& dc,
|
||||||
const wxRect& rect,
|
const wxRect& rect,
|
||||||
int flags = 0)
|
int WXUNUSED(flags) = 0)
|
||||||
{
|
{
|
||||||
dc.SetBrush(*wxCYAN_BRUSH);
|
dc.SetBrush(*wxCYAN_BRUSH);
|
||||||
dc.SetTextForeground(*wxRED);
|
dc.SetTextForeground(*wxRED);
|
||||||
|
Reference in New Issue
Block a user