[container] cast actor to gobject before calling g_object_set_qdata

A minor compiler warning fix: in destroy_child_meta we weren't casting the
first argument to g_object_set_qdata to a gobject.
This commit is contained in:
Robert Bragg 2009-09-21 18:12:02 +01:00
parent b2f958a618
commit 1b37cb6cb7

View File

@ -749,7 +749,7 @@ destroy_child_meta (ClutterContainer *container,
if (iface->child_meta_type == G_TYPE_INVALID)
return;
g_object_set_qdata (actor, quark_child_meta, NULL);
g_object_set_qdata (G_OBJECT (actor), quark_child_meta, NULL);
}
/**