X-Git-Url: http://git.code-monkey.de/?p=ruby-evas.git;a=blobdiff_plain;f=src%2Frb_polygon.c;h=8c4cc139af03a3052b4295fc26108a1918601538;hp=0a04170469f13e9f87bf9d008c46f5ba33b13aa7;hb=12968e62897c3cc69ed0759ddb6cfae61ba33551;hpb=8efd0235a6bb26710fd89dd07a5fdb55cafde247 diff --git a/src/rb_polygon.c b/src/rb_polygon.c index 0a04170..8c4cc13 100644 --- a/src/rb_polygon.c +++ b/src/rb_polygon.c @@ -1,5 +1,5 @@ /* - * $Id: rb_polygon.c 49 2004-08-01 10:17:39Z tilman $ + * $Id: rb_polygon.c 54 2004-08-09 10:51:39Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -49,7 +49,7 @@ static VALUE c_new (VALUE klass, VALUE evas) return self; } -static VALUE c_point_add (VALUE self, VALUE x, VALUE y) +static VALUE c_add_point (VALUE self, VALUE x, VALUE y) { GET_OBJ (self, RbEvasObject, e); @@ -61,7 +61,7 @@ static VALUE c_point_add (VALUE self, VALUE x, VALUE y) return Qnil; } -static VALUE c_points_clear (VALUE self) +static VALUE c_clear_points (VALUE self) { GET_OBJ (self, RbEvasObject, e); @@ -75,6 +75,6 @@ void Init_Polygon (void) VALUE c = rb_define_class_under (mEvas, "Polygon", cEvasObject); rb_define_singleton_method (c, "new", c_new, 1); - rb_define_method (c, "point_add", c_point_add, 2); - rb_define_method (c, "points_clear", c_points_clear, 0); + rb_define_method (c, "add_point", c_add_point, 2); + rb_define_method (c, "clear_points", c_clear_points, 0); }