From 12968e62897c3cc69ed0759ddb6cfae61ba33551 Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Mon, 9 Aug 2004 10:51:39 +0000 Subject: [PATCH] Minor API changes. --- src/rb_gradient.c | 10 +++++----- src/rb_polygon.c | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/rb_gradient.c b/src/rb_gradient.c index e597685..a59f051 100644 --- a/src/rb_gradient.c +++ b/src/rb_gradient.c @@ -1,5 +1,5 @@ /* - * $Id: rb_gradient.c 49 2004-08-01 10:17:39Z tilman $ + * $Id: rb_gradient.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_color_add (VALUE self, VALUE r, VALUE g, VALUE b, +static VALUE c_add_color (VALUE self, VALUE r, VALUE g, VALUE b, VALUE a, VALUE distance) { GET_OBJ (self, RbEvasObject, e); @@ -67,7 +67,7 @@ static VALUE c_color_add (VALUE self, VALUE r, VALUE g, VALUE b, return Qnil; } -static VALUE c_colors_clear (VALUE self) +static VALUE c_clear_colors (VALUE self) { GET_OBJ (self, RbEvasObject, e); @@ -99,8 +99,8 @@ void Init_Gradient (void) VALUE c = rb_define_class_under (mEvas, "Gradient", cEvasObject); rb_define_singleton_method (c, "new", c_new, 1); - rb_define_method (c, "color_add", c_color_add, 5); - rb_define_method (c, "colors_clear", c_colors_clear, 0); + rb_define_method (c, "add_color", c_add_color, 5); + rb_define_method (c, "clear_colors", c_clear_colors, 0); rb_define_method (c, "angle", c_angle_get, 0); rb_define_method (c, "angle=", c_angle_set, 1); } 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); } -- 2.30.2