From 0724b3fb916d27d5ce4122763106773f696bf07d Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Sun, 7 Oct 2012 21:15:49 +0100 Subject: [PATCH] 2.0: Remove deprecated API from Animatable --- clutter/clutter-animatable.c | 2 -- clutter/clutter-animatable.h | 9 --------- 2 files changed, 11 deletions(-) diff --git a/clutter/clutter-animatable.c b/clutter/clutter-animatable.c index 178706c7f..089f4f3cb 100644 --- a/clutter/clutter-animatable.c +++ b/clutter/clutter-animatable.c @@ -174,8 +174,6 @@ clutter_animatable_set_final_state (ClutterAnimatable *animatable, * This function should be used for every property animation * involving #ClutterAnimatables. * - * This function replaces clutter_animatable_animate_property(). - * * Return value: %TRUE if the interpolation was successful, * and %FALSE otherwise * diff --git a/clutter/clutter-animatable.h b/clutter/clutter-animatable.h index 78a796fae..7e51d4838 100644 --- a/clutter/clutter-animatable.h +++ b/clutter/clutter-animatable.h @@ -51,8 +51,6 @@ typedef struct _ClutterAnimatableIface ClutterAnimatableIface; /** * ClutterAnimatableIface: - * @animate_property: virtual function for custom interpolation of a - * property. This virtual function is deprecated * @find_property: virtual function for retrieving the #GParamSpec of * an animatable property * @get_initial_state: virtual function for retrieving the initial @@ -73,13 +71,6 @@ struct _ClutterAnimatableIface GTypeInterface parent_iface; /*< public >*/ - gboolean (* animate_property) (ClutterAnimatable *animatable, - ClutterAnimation *animation, - const gchar *property_name, - const GValue *initial_value, - const GValue *final_value, - gdouble progress, - GValue *value); GParamSpec *(* find_property) (ClutterAnimatable *animatable, const gchar *property_name); void (* get_initial_state) (ClutterAnimatable *animatable,