X-Git-Url: http://git.code-monkey.de/?p=ruby-esmart.git;a=blobdiff_plain;f=src%2Fesmart_trans_x11%2Frb_esmart_trans_x11.c;fp=src%2Fesmart_trans_x11%2Frb_esmart_trans_x11.c;h=a06f168b4d7e66b4e6260effc5e7375327b50439;hp=4671d62dabde06d4fc2762467438559eb013c67a;hb=f48bba2d3cf64903ab176f6f957589a0a9ffa660;hpb=d801ea49773d7c98540d1c01be877b17c52f1fb6 diff --git a/src/esmart_trans_x11/rb_esmart_trans_x11.c b/src/esmart_trans_x11/rb_esmart_trans_x11.c index 4671d62..a06f168 100644 --- a/src/esmart_trans_x11/rb_esmart_trans_x11.c +++ b/src/esmart_trans_x11/rb_esmart_trans_x11.c @@ -1,5 +1,5 @@ /* - * $Id: rb_esmart_trans_x11.c 52 2004-08-01 10:19:14Z tilman $ + * $Id: rb_esmart_trans_x11.c 356 2006-02-10 18:27:31Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -27,25 +27,15 @@ #include "../rb_esmart.h" -static void c_free (RbEvasObject *e) +static VALUE c_init (VALUE self, VALUE evas) { - c_evas_object_free (e, true); -} - -static VALUE c_new (VALUE klass, VALUE evas) -{ - VALUE self, argv[1]; - RbEvasObject *trans; - CHECK_CLASS (evas, cEvas); GET_OBJ (evas, RbEvas, e); + GET_OBJ (self, RbEvasObject, trans); - self = Data_Make_Struct (klass, RbEvasObject, c_evas_object_mark, - c_free, trans); trans->real = esmart_trans_x11_new (e->real); - argv[0] = evas; - rb_obj_call_init (self, 1, argv); + rb_call_super (1, &evas); return self; } @@ -104,7 +94,7 @@ void Init_esmart_trans_x11 (void) c = rb_define_class_under (mEsmart, "TransX11", cEvasObject); - rb_define_singleton_method (c, "new", c_new, 1); + rb_define_method (c, "initialize", c_init, 1); rb_define_method (c, "type", c_type_get, 0); rb_define_method (c, "type=", c_type_set, 1); rb_define_method (c, "window=", c_window_set, 1);