summaryrefslogtreecommitdiff
path: root/clutter/clutter-timeline.h
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@openedhand.com>2007-06-07 10:26:07 +0000
committerEmmanuele Bassi <ebassi@openedhand.com>2007-06-07 10:26:07 +0000
commitc90a252581ac26daec5ad5cb50fa37d2590a17b7 (patch)
tree1c9e28b6b906b4288a6e56c9dc89dff2f241aae2 /clutter/clutter-timeline.h
parent9789bfc69e89648820d856c7b76d31966655d144 (diff)
downloadclutter-c90a252581ac26daec5ad5cb50fa37d2590a17b7.tar.gz
Rename clutter_timeline_copy to clutter_timeline_clone
Usually, in OOP objects are cloned, while boxed types are copied; this holds true in GObject, where GBoxed types have copy functions.
Diffstat (limited to 'clutter/clutter-timeline.h')
-rw-r--r--clutter/clutter-timeline.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/clutter/clutter-timeline.h b/clutter/clutter-timeline.h
index 92f077635..9d980afd2 100644
--- a/clutter/clutter-timeline.h
+++ b/clutter/clutter-timeline.h
@@ -87,6 +87,8 @@ GType clutter_timeline_get_type (void) G_GNUC_CONST;
ClutterTimeline *clutter_timeline_new (guint n_frames,
guint fps);
+ClutterTimeline *clutter_timeline_clone (ClutterTimeline *timeline);
+
guint clutter_timeline_get_speed (ClutterTimeline *timeline);
void clutter_timeline_set_speed (ClutterTimeline *timeline,
guint fps);
@@ -106,7 +108,6 @@ void clutter_timeline_set_n_frames (ClutterTimeline *timeline,
guint n_frames);
guint clutter_timeline_get_n_frames (ClutterTimeline *timeline);
gboolean clutter_timeline_is_playing (ClutterTimeline *timeline);
-ClutterTimeline* clutter_timeline_copy (ClutterTimeline *timeline);
G_END_DECLS