Class instantiation fixes.
[ruby-evas.git] / src / rb_evas.c
index 96d26de1713dbd0196f9e3f73f4e97ab8252f075..f1b433fdba21e75567c79d9ae44c668c082933fa 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas.c 283 2005-03-15 17:59:03Z tilman $
+ * $Id: rb_evas.c 354 2006-02-10 18:14:08Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
@@ -34,21 +34,27 @@ static void c_mark (RbEvas *e)
        rb_gc_mark (e->parent);
 }
 
+static VALUE c_alloc (VALUE klass)
+{
+       RbEvas *evas = NULL;
+
+       return Data_Make_Struct (cEvas, RbEvas, c_mark, free, evas);
+}
+
 VALUE TO_EVAS (VALUE parent, Evas *e)
 {
        VALUE self;
-       RbEvas *evas = NULL;
 
        if (NIL_P (parent) || !e)
                return Qnil;
 
-       self = Data_Make_Struct (cEvas, RbEvas,
-                                c_mark, free, evas);
+       self = rb_class_new_instance (0, NULL, cEvas);
+
+       GET_OBJ (self, RbEvas, evas);
+
        evas->real = e;
        evas->parent = parent;
 
-       rb_obj_call_init (self, 0, NULL);
-
        return self;
 }
 
@@ -329,6 +335,8 @@ void Init_Evas (void)
 {
        cEvas = rb_define_class_under (mEvas, "Evas", rb_cObject);
 
+       rb_define_alloc_func (cEvas, c_alloc);
+
        /* not publically instantiable yet */
        rb_define_private_method (rb_singleton_class (cEvas),
                                  "new", NULL, 0);