* clutter/clutter-score.c (clutter_score_append):
initialize "marker" string and "complete_id" signal id when creating a ClutterScoreEntry.
This commit is contained in:
parent
813b22a22e
commit
d03314cb84
@ -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:
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user