diff --git a/ChangeLog b/ChangeLog index e8c289206..b6a50d2bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-06-17 Jussi Kukkonen + + * clutter/clutter-score.c (clutter_score_append): + initialize "marker" string and "complete_id" signal id when creating a + ClutterScoreEntry. + 2008-06-16 Tomas Frydrych * clutter/clutter-actor.c: diff --git a/clutter/clutter-score.c b/clutter/clutter-score.c index 88af7598a..6f7400160 100644 --- a/clutter/clutter-score.c +++ b/clutter/clutter-score.c @@ -898,7 +898,9 @@ clutter_score_append (ClutterScore *score, entry->timeline = g_object_ref (timeline); entry->parent = NULL; entry->id = priv->last_id; + entry->marker = NULL; entry->marker_id = 0; + entry->complete_id = 0; entry->score = score; entry->node = g_node_append_data (priv->root, entry); @@ -918,7 +920,9 @@ clutter_score_append (ClutterScore *score, entry->timeline = g_object_ref (timeline); entry->parent = parent; entry->id = priv->last_id; + entry->marker = NULL; entry->marker_id = 0; + entry->complete_id = 0; entry->score = score; entry->node = g_node_append_data (node, entry);