use MOONLIGHT symbol
[mono.git] / mcs / class / Mono.Cairo / Samples / png / arcneg.cs
index ecf6277743634c9b38ad506707f0c7c97ec98cc8..628467b78eebce38a4f95ebb00baa1666fc3a616 100644 (file)
@@ -34,7 +34,7 @@ public class CairoTest
 {      
        static readonly double  M_PI = 3.14159265358979323846;
 
-       static void draw (Cairo.Graphics gr, int width, int height)
+       static void draw (Cairo.Context gr, int width, int height)
        {
                double xc = 0.5;
                double yc = 0.5;
@@ -64,7 +64,7 @@ public class CairoTest
        static void Main ()
        {               
                Surface s = new ImageSurface (Format.ARGB32, 500, 500);
-               Cairo.Graphics g = new Cairo.Graphics (s);
+               Cairo.Context g = new Cairo.Context (s);
 
                draw (g, 500, 500);