clutter/actor: Fix a wrong comment

According to the definition of ClutterAnimationInfo in
clutter-actor-private.h, `transitions` is the third variable of the
struct, not the first one.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/791
This commit is contained in:
Jonas Dreßler 2019-09-11 12:29:36 +02:00 committed by Florian Müllner
parent 7a22f6fd3f
commit f92e0bec0b

View File

@ -19410,9 +19410,9 @@ clutter_actor_iter_destroy (ClutterActorIter *iter)
}
static const ClutterAnimationInfo default_animation_info = {
NULL, /* transitions */
NULL, /* states */
NULL, /* cur_state */
NULL, /* transitions */
};
static void