summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2012-10-07 21:15:49 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2013-04-05 18:48:01 +0100
commit0724b3fb916d27d5ce4122763106773f696bf07d (patch)
tree665329970da9a8f503a3986d29ecb344fb59beed
parent465a324ecc6869e95f45039366fbecfdd7f94821 (diff)
downloadclutter-0724b3fb916d27d5ce4122763106773f696bf07d.tar.gz
2.0: Remove deprecated API from Animatable
-rw-r--r--clutter/clutter-animatable.c2
-rw-r--r--clutter/clutter-animatable.h9
2 files changed, 0 insertions, 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 #ClutterAnimatable<!-- -->s.
*
- * 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,