[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:
parent
b2f958a618
commit
1b37cb6cb7
@ -749,7 +749,7 @@ destroy_child_meta (ClutterContainer *container,
|
|||||||
if (iface->child_meta_type == G_TYPE_INVALID)
|
if (iface->child_meta_type == G_TYPE_INVALID)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
g_object_set_qdata (actor, quark_child_meta, NULL);
|
g_object_set_qdata (G_OBJECT (actor), quark_child_meta, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user