diff --git a/samples/render/renddll.cpp b/samples/render/renddll.cpp index 51983bd6f0..135ea2f08f 100644 --- a/samples/render/renddll.cpp +++ b/samples/render/renddll.cpp @@ -44,6 +44,14 @@ public: { } + // draw check button + virtual void DrawCheckButton(wxWindow *win, + wxDC& dc, + const wxRect& rect, + int flags = 0) + { + } + // draw the border for sash window: this border must be such that the sash // drawn by DrawSash() blends into it well virtual void DrawSplitterBorder(wxWindow *win, @@ -114,4 +122,3 @@ WXEXPORT wxRendererNative *wxCreateRenderer() { return new MyDllRenderer; } -