From d03314cb84d14d3059039aa92e5be99fc4e5e650 Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Tue, 17 Jun 2008 08:55:54 +0000 Subject: [PATCH] * clutter/clutter-score.c (clutter_score_append): initialize "marker" string and "complete_id" signal id when creating a ClutterScoreEntry. --- ChangeLog | 6 ++++++ clutter/clutter-score.c | 4 ++++ 2 files changed, 10 insertions(+) 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);