From c1e45f7ee7559ac4e9ffaf1d5e956d9a9490fb73 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 18 Mar 2008 22:10:05 +0000 Subject: [PATCH] 2008-03-18 Emmanuele Bassi * clutter/clutter-score.c: Update documentation. --- ChangeLog | 4 ++++ clutter/clutter-score.c | 11 +++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index b7f8b7bce..2c8d625f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-03-18 Emmanuele Bassi + + * clutter/clutter-score.c: Update documentation. + 2008-03-18 Emmanuele Bassi * clutter/clutter-score.[ch]: Remove all the API changes, and diff --git a/clutter/clutter-score.c b/clutter/clutter-score.c index 42b9ee05b..07fca6226 100644 --- a/clutter/clutter-score.c +++ b/clutter/clutter-score.c @@ -54,15 +54,14 @@ * clutter_score_start (); * ]| * - * A #ClutterScore takes a reference on the timelines it manages. + * A #ClutterScore takes a reference on the timelines it manages, + * so timelines can be safely unreferenced after being appended. * * New timelines can be appended to the #ClutterScore using * clutter_score_append() and removed using clutter_score_remove(). - * Timelines can either be appended at the end of other timelines - * or at the beginning of the score using clutter_score_append(). - * Timelines can also be appeneded at a specific position, expressed - * in either millisecond or frame number, of the parent timeline, - * using clutter_score_append_at_time() or clutter_score_append_at_frame(). + * + * Timelines can also be appended to a specific marker, using + * clutter_score_append_at_marker(). * * The score can be cleared using clutter_score_remove_all(). *