X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Frb_gradient.c;fp=src%2Frb_gradient.c;h=a59f051fc5dbae8b3204f77019a7d7bceaa2e564;hb=12968e62897c3cc69ed0759ddb6cfae61ba33551;hp=e597685475aaee79671bbac0fdcd5a362acdc156;hpb=8efd0235a6bb26710fd89dd07a5fdb55cafde247;p=ruby-evas.git 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); }