TimelineObject: add a property to count the number of effects applied on it

This commit is contained in:
Thibault Saunier 2011-01-31 11:10:35 +01:00 committed by Edward Hervey
parent f8154914a0
commit 0e4528112d

View file

@ -93,6 +93,8 @@ struct _GESTimelineObjectPrivate
gboolean ignore_notifies;
GList *mappings;
guint nb_effects;
};
enum
@ -255,6 +257,7 @@ ges_timeline_object_init (GESTimelineObject * self)
self->height = 1;
self->priv->trackobjects = NULL;
self->priv->layer = NULL;
self->priv->nb_effects = 0;
}
/**