Create the callbacks hash on first use.
authorTilman Sauerbeck <tilman@code-monkey.de>
Tue, 22 Mar 2005 17:41:35 +0000 (17:41 +0000)
committerTilman Sauerbeck <tilman@code-monkey.de>
Tue, 22 Mar 2005 17:41:35 +0000 (17:41 +0000)
src/rb_evas_object.c
src/rb_evas_object_events.c

index b32f2b8ebf5c4d425b740dc8364aa88e7b012f3f..c2d39af4f9c7661dd90e69a6638e98f80620cdf6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas_object.c 281 2005-03-14 20:51:40Z 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,7 +49,9 @@ VALUE TO_EVAS_OBJECT (Evas_Object *o)
 void c_evas_object_mark (RbEvasObject *e)
 {
        rb_gc_mark (e->parent);
-       rb_gc_mark (e->callbacks);
+
+       if (!NIL_P (e->callbacks))
+               rb_gc_mark (e->callbacks);
 }
 
 void c_evas_object_free (RbEvasObject *e, bool free_mem)
@@ -69,7 +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 = rb_hash_new ();
+       e->callbacks = Qnil;
 
        return self;
 }
index becdee9895798fe06a5aa523de7b2e961dc8fe36..1d465a7474b98243a7496fbec9a2a3b74338668c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas_object_events.c 285 2005-03-15 18:00:50Z tilman $
+ * $Id: rb_evas_object_events.c 302 2005-03-22 17:41:35Z tilman $
  *
  * Copyright (C) 2005 Tilman Sauerbeck (tilman at code-monkey de)
  *
@@ -47,6 +47,9 @@
 \
        if (!rb_block_given_p ()) \
                return Qnil; \
+\
+       if (NIL_P (e->callbacks)) \
+               e->callbacks = rb_hash_new (); \
 \
        rb_hash_aset (e->callbacks, rb_str_new2 (#name), \
                      rb_block_proc ()); \