From: Włodzimierz Skiba Date: Tue, 10 Oct 2006 13:46:23 +0000 (+0000) Subject: WinCE build fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/24ff756145239f513187398f00092f3581fb12e2 WinCE build fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41894 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/dcbuffer.h b/include/wx/dcbuffer.h index 216f4f970b..f9a8afa46f 100644 --- a/include/wx/dcbuffer.h +++ b/include/wx/dcbuffer.h @@ -469,7 +469,7 @@ public: { m_targetDc->ResetBoundingBox(); } #if defined(__WXWINCE__) void Rotate( wxList* points, double angle, wxPoint center = wxPoint(0,0) ) - { m_targetDc->Rotate(points, angle, center, 0)); } + { m_targetDc->Rotate(points, angle, center); } #endif // defined(__WXWINCE__) virtual void SetAxisOrientation(bool xLeftRight, bool yBottomUp) { m_targetDc->SetAxisOrientation(xLeftRight, yBottomUp); }