Class instantiation fixes.
[ruby-esmart.git] / src / esmart_trans_x11 / rb_esmart_trans_x11.c
index 4671d62dabde06d4fc2762467438559eb013c67a..a06f168b4d7e66b4e6260effc5e7375327b50439 100644 (file)
@@ -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)
  *
 
 #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);