Create the callbacks hash on first use.
[ruby-evas.git] / src / rb_evas_object.c
index 4487d1d3d25fef660f0fb12b6c30d5f063f0ba39..c2d39af4f9c7661dd90e69a6638e98f80620cdf6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas_object.c 106 2004-08-29 15:56:35Z tilman $
+ * $Id: rb_evas_object.c 302 2005-03-22 17:41:35Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
@@ -49,6 +49,9 @@ VALUE TO_EVAS_OBJECT (Evas_Object *o)
 void c_evas_object_mark (RbEvasObject *e)
 {
        rb_gc_mark (e->parent);
+
+       if (!NIL_P (e->callbacks))
+               rb_gc_mark (e->callbacks);
 }
 
 void c_evas_object_free (RbEvasObject *e, bool free_mem)
@@ -68,6 +71,7 @@ static VALUE c_init (VALUE self, VALUE parent)
        evas_object_data_set (e->real, RUBY_EVAS_OBJECT_KEY, (void *) self);
 
        e->parent = parent;
+       e->callbacks = Qnil;
 
        return self;
 }