From fc4e7a035c2feb382a349e6c9de953923e011fb3 Mon Sep 17 00:00:00 2001 From: Kevin Hock Date: Sat, 19 Aug 2000 06:32:50 +0000 Subject: [PATCH] wxDrawObject::Draw vritual and non const wxDCBase git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8136 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/dc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/dc.h b/include/wx/dc.h index 4b0b0d8ff0..faee757e84 100644 --- a/include/wx/dc.h +++ b/include/wx/dc.h @@ -44,7 +44,7 @@ public: virtual ~wxDrawObject() { } - void Draw(const wxDCBase& dc) const { } + virtual void Draw(wxDCBase& dc) const { } virtual void CalcBoundingBox(wxCoord x, wxCoord y) { -- 2.45.2