2004-05-10 Radek Doulik <rodo@ximian.com>
authorRadek Doulik <rodo@mono-cvs.ximian.com>
Mon, 10 May 2004 09:58:39 +0000 (09:58 -0000)
committerRadek Doulik <rodo@mono-cvs.ximian.com>
Mon, 10 May 2004 09:58:39 +0000 (09:58 -0000)
* Mono.Cairo/Graphics.cs: fixed typo, pass x2, y2 to
cairo_curve_to instead of passing x2, x2

svn path=/trunk/mcs/; revision=27023

mcs/class/Mono.Cairo/ChangeLog
mcs/class/Mono.Cairo/Mono.Cairo/Graphics.cs

index 51109da5627bc2b747cb640931551a37fd98f642..52545eddfaa4243472b356dddd2fd6a9a663a1f9 100644 (file)
@@ -1,3 +1,8 @@
+2004-05-10  Radek Doulik  <rodo@ximian.com>
+
+       * Mono.Cairo/Graphics.cs: fixed typo, pass x2, y2 to
+       cairo_curve_to instead of passing x2, x2
+
 2004-04-25  Jordi Mas i Hernandez <jordi@ximian.com>
        * Mono.Cairo/Pattern.cs: implemented all the new pattern API 
        introduced in Cairo 0.1.20
index 07630c45698f3c43f58e7164588e05e9e0b168e5..579b20456c737fc83db8df39baeb0ff17a87c495 100644 (file)
@@ -232,7 +232,7 @@ namespace Cairo {
 
                 public void CurveTo (double x1, double y1, double x2, double y2, double x3, double y3)
                 {
-                        CairoAPI.cairo_curve_to (state, x1, y1, x2, x2, x3, y3);
+                        CairoAPI.cairo_curve_to (state, x1, y1, x2, y2, x3, y3);
                 }
 
                 public void CurveTo (Point p1, Point p2, Point p3)