2007-12-20 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-container.c:
	(clutter_container_lower_child): Fix interface method call
	to actually call ClutterContainer::lower. (#670, Gwenole
	Beauchesne)
This commit is contained in:
Emmanuele Bassi 2007-12-20 10:44:28 +00:00
parent ecded5cb7c
commit 41c9528b4d
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2007-12-20 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-container.c:
(clutter_container_lower_child): Fix interface method call
to actually call ClutterContainer::lower. (#670, Gwenole
Beauchesne)
2007-12-20 Emmanuele Bassi <ebassi@openedhand.com> 2007-12-20 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-label.c: * clutter/clutter-label.c:

View File

@ -464,7 +464,7 @@ clutter_container_lower_child (ClutterContainer *container,
return; return;
} }
CLUTTER_CONTAINER_GET_IFACE (container)->raise (container, actor, sibling); CLUTTER_CONTAINER_GET_IFACE (container)->lower (container, actor, sibling);
} }
/** /**