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:
Vadim Zeitlin
2009-06-06 23:13:03 +00:00
parent 7faab5c528
commit 0d46084f29

View File

@@ -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);