* clutter/clutter-score.c (clutter_score_append):

initialize "marker" string and "complete_id" signal id when creating a
	ClutterScoreEntry.
This commit is contained in:
Jussi Kukkonen 2008-06-17 08:55:54 +00:00
parent 813b22a22e
commit d03314cb84
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-06-17 Jussi Kukkonen <jku@o-hand.com>
* clutter/clutter-score.c (clutter_score_append):
initialize "marker" string and "complete_id" signal id when creating a
ClutterScoreEntry.
2008-06-16 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-actor.c:

View File

@ -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);