1
0
Fork 0

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

* clutter/clutter-actor.h: Remove the unused ::set_depth() and
	::get_depth() virtual functions. (#674, Murray Cumming)
This commit is contained in:
Emmanuele Bassi 2007-12-21 17:18:49 +00:00
parent e3ebfdb14b
commit 24b24f0d53
2 changed files with 5 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2007-12-21 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-actor.h: Remove the unused ::set_depth() and
::get_depth() virtual functions. (#674, Murray Cumming)
2007-12-21 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-group.c:

View file

@ -157,8 +157,6 @@ struct _ClutterActor
* of an actor
* @query_coords: virtual function, used when querying the actor for
* its coordinates
* @set_depth: virtual function, used when setting the depth
* @get_depth: virtual function, used when getting the depth
* @parent_set: signal class closure for the ClutterActor::parent-set
* signal
* @destroy: signal class closure for the ClutterActor::destroy signal
@ -183,9 +181,6 @@ struct _ClutterActorClass
ClutterActorBox *box);
void (* query_coords) (ClutterActor *actor,
ClutterActorBox *box);
void (* set_depth) (ClutterActor *actor,
gint depth);
gint (* get_depth) (ClutterActor *actor);
void (* parent_set) (ClutterActor *actor,
ClutterActor *old_parent);