[animation] Fix variable use

Instead of using the proper typed variables we were overwriting
the gpointer for the Interval's final value.
This commit is contained in:
Emmanuele Bassi 2009-07-28 13:20:32 +01:00
parent f4ad3761c4
commit 57baa2f0bc

View File

@ -143,8 +143,8 @@ clutter_animation_real_completed (ClutterAnimation *self)
ClutterInterval *interval = value;
GValue *p_value;
value = clutter_interval_peek_final_value (interval);
g_object_set_property (priv->object, p_name, value);
p_value = clutter_interval_peek_final_value (interval);
g_object_set_property (priv->object, p_name, p_value);
}
/* at this point, if this animation was created by clutter_actor_animate()