Rename minimum and maximum depth properties of the depth behaviour

To follow the other simple behaviours, the ClutterBehaviourDepth:min-depth
and ClutterBehaviourDepth:max-depth properties have been renamed to
ClutterBehaviourDepth:depth-start and ClutterBehaviourDepth:depth-end
respectively.
This commit is contained in:
Emmanuele Bassi
2007-07-13 14:11:49 +00:00
parent 410f40b578
commit 097c177824
2 changed files with 31 additions and 31 deletions

View File

@ -59,8 +59,8 @@ struct _ClutterBehaviourDepthClass
GType clutter_behaviour_depth_get_type (void) G_GNUC_CONST;
ClutterBehaviour *clutter_behaviour_depth_new (ClutterAlpha *alpha,
gint min_depth,
gint max_depth);
gint depth_start,
gint depth_end);
G_END_DECLS