2007-08-05 Matthew Allum <mallum@openedhand.com>

* README:
        * clutter/clutter-actor.c:
        Document show/hide_all behaviour correctly.
This commit is contained in:
Matthew Allum 2007-08-05 13:37:49 +00:00
parent f13707632c
commit e1d439f9c9
2 changed files with 5 additions and 4 deletions

3
README
View File

@ -132,6 +132,9 @@ wanting to port to newer releases (See NEWS for general new feature info).
Release Notes for Clutter 0.4.0
-------------------------------
* clutter_actor_show_all does not recurse for groups at least (this is to
match the original group_show_all behaviour)
* FIXME
Release Notes for Clutter 0.3.1

View File

@ -153,8 +153,7 @@ clutter_actor_show (ClutterActor *self)
* clutter_actor_show_all:
* @self: a #ClutterActor
*
* Recursively show an actor, and any child actor if @self has
* child actors.
* Call show() on all children of a actor (if any).
*
* Since: 0.2
*/
@ -205,8 +204,7 @@ clutter_actor_hide (ClutterActor *self)
* clutter_actor_hide_all:
* @self: a #ClutterActor
*
* Recursively hides an actor, and any child actor if @self
* has child actors.
* Call hide() on all child actors (if any).
*
* Since: 0.2
*/