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.
This commit is contained in:
Emmanuele Bassi
2007-06-07 10:26:07 +00:00
parent 9789bfc69e
commit c90a252581
4 changed files with 16 additions and 13 deletions

View File

@ -253,7 +253,7 @@ clutter_effect_closure_new (ClutterEffectTemplate *template,
c->template = template;
c->actor = actor;
c->timeline = clutter_timeline_copy (priv->timeline);
c->timeline = clutter_timeline_clone (priv->timeline);
c->alpha = clutter_alpha_new_full (c->timeline,
priv->alpha_func,
NULL, NULL);