diff cairo_support.d @ 11:fb571a3b1f0d

Checkpoint
author "David Bryant <bagnose@gmail.com>"
date Sat, 11 Jul 2009 23:32:22 +0930
parents 71ca82e0eb76
children 9e63308b749c
line wrap: on
line diff
--- a/cairo_support.d	Sat Jul 11 22:49:41 2009 +0930
+++ b/cairo_support.d	Sat Jul 11 23:32:22 2009 +0930
@@ -4,7 +4,7 @@
 
 import cairo.Context;
 
-void draw_rectangle(Context cr, Rectangle rectangle) {
+void rectangle(Context cr, Rectangle rectangle) {
     cr.rectangle(rectangle.position.x, rectangle.position.y,
                  rectangle.size.x, rectangle.size.y);
 }