]> git.saurik.com Git - wxWidgets.git/commitdiff
Avoid ambigous overload errors
authorRobin Dunn <robin@alldunn.com>
Tue, 3 Oct 2006 21:53:35 +0000 (21:53 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 3 Oct 2006 21:53:35 +0000 (21:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41616 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/graphcmn.cpp

index f7e7d1abb6dc8c732642b823091b624fe4290c8d..65a5dd067fefe10fd5b22734443beeba4e7eb18f 100644 (file)
@@ -105,8 +105,8 @@ void wxGraphicsPath::AddQuadCurveToPoint( wxDouble cx, wxDouble cy, wxDouble x,
     wxPoint2DDouble start = GetCurrentPoint() ;
     wxPoint2DDouble end(x,y);
     wxPoint2DDouble c(cx,cy);
-    c1 = (1/3.0) * start + (2/3.0) * c;
-    c2 = (2/3.0) * c + (1/3.0) * end ;
+    c1 = wxDouble(1/3.0) * start + wxDouble(2/3.0) * c;
+    c2 = wxDouble(2/3.0) * c + wxDouble(1/3.0) * end ;
     AddCurveToPoint(c1.m_x,c1.m_y,c2.m_x,c2.m_y,x,y);
 }