don't override DoDrawSpline() under CE at all instead of overriding it and then always forwarding to the base class version

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53491 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-05-08 14:13:15 +00:00
parent 7210c3a12c
commit 3e9db38eaf
2 changed files with 3 additions and 8 deletions

View File

@@ -199,7 +199,7 @@ public:
double radius);
virtual void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
#if wxUSE_SPLINES
#if wxUSE_SPLINES && !defined(__WXWINCE__)
virtual void DoDrawSpline(const wxPointList *points);
#endif