From d4e46bb893d41f7e9d80d3d272765e7b2779d32b Mon Sep 17 00:00:00 2001 From: Thomas Wood Date: Mon, 21 Sep 2009 15:40:53 +0100 Subject: [PATCH] [container] set the child meta qdata on the child, not the container Set child meta qdata on the child and not the container, since the child is the object that owns the data. --- clutter/clutter-container.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter-container.c b/clutter/clutter-container.c index 9e6eff8b0..857953d29 100644 --- a/clutter/clutter-container.c +++ b/clutter/clutter-container.c @@ -734,7 +734,7 @@ create_child_meta (ClutterContainer *container, "actor", actor, NULL); - g_object_set_qdata_full (G_OBJECT (container), quark_child_meta, + g_object_set_qdata_full (G_OBJECT (actor), quark_child_meta, child_meta, (GDestroyNotify) g_object_unref); }