mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
animator: removed bogus arg in keys interpolation accessor
A bogus ClutterInterpolation argument had been carried from clutter_animator_set_interpolation to clutter_animator_get_interpolation in copy and paste.
This commit is contained in:
parent
be8f53f229
commit
e8d32fd153
@ -1579,7 +1579,6 @@ clutter_animator_property_set_ease_in (ClutterAnimator *animator,
|
|||||||
* @animator: a #ClutterAnimatorKey
|
* @animator: a #ClutterAnimatorKey
|
||||||
* @object: a #GObject
|
* @object: a #GObject
|
||||||
* @property_name: the name of a property on object
|
* @property_name: the name of a property on object
|
||||||
* @interpolation: the #ClutterInterpolation to use
|
|
||||||
*
|
*
|
||||||
* Get the interpolation used by animator for a property on a particular
|
* Get the interpolation used by animator for a property on a particular
|
||||||
* object.
|
* object.
|
||||||
@ -1590,8 +1589,7 @@ clutter_animator_property_set_ease_in (ClutterAnimator *animator,
|
|||||||
ClutterInterpolation
|
ClutterInterpolation
|
||||||
clutter_animator_property_get_interpolation (ClutterAnimator *animator,
|
clutter_animator_property_get_interpolation (ClutterAnimator *animator,
|
||||||
GObject *object,
|
GObject *object,
|
||||||
const gchar *property_name,
|
const gchar *property_name)
|
||||||
ClutterInterpolation interpolation)
|
|
||||||
{
|
{
|
||||||
GList *initial;
|
GList *initial;
|
||||||
ClutterAnimatorKey key, *initial_key;
|
ClutterAnimatorKey key, *initial_key;
|
||||||
|
@ -146,8 +146,7 @@ void clutter_animator_property_set_ease_in (ClutterAnimato
|
|||||||
|
|
||||||
ClutterInterpolation clutter_animator_property_get_interpolation (ClutterAnimator *animator,
|
ClutterInterpolation clutter_animator_property_get_interpolation (ClutterAnimator *animator,
|
||||||
GObject *object,
|
GObject *object,
|
||||||
const gchar *property_name,
|
const gchar *property_name);
|
||||||
ClutterInterpolation interpolation);
|
|
||||||
void clutter_animator_property_set_interpolation (ClutterAnimator *animator,
|
void clutter_animator_property_set_interpolation (ClutterAnimator *animator,
|
||||||
GObject *object,
|
GObject *object,
|
||||||
const gchar *property_name,
|
const gchar *property_name,
|
||||||
|
Loading…
Reference in New Issue
Block a user