From 605927db5b9d9ddb8677458b94ad2ca6d058f355 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 21 Jul 2009 09:20:09 +0100 Subject: [PATCH] [docs] Fix typo in the effects migration guide Fixes bug: http://bugzilla.openedhand.com/show_bug.cgi?id=1706 --- doc/reference/clutter/migrating-ClutterEffect.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/reference/clutter/migrating-ClutterEffect.xml b/doc/reference/clutter/migrating-ClutterEffect.xml index 92c4ecf79..5b6f109ae 100644 --- a/doc/reference/clutter/migrating-ClutterEffect.xml +++ b/doc/reference/clutter/migrating-ClutterEffect.xml @@ -116,7 +116,7 @@ on_fade_complete (ClutterActor *actor, ClutterAnimation *animation; - animation = clutter_actor_animate (actor, CLUTTER_LINER, 500, + animation = clutter_actor_animate (actor, CLUTTER_LINEAR, 500, "opacity", 0, NULL); g_signal_connect_swapped (animation, @@ -125,7 +125,7 @@ on_fade_complete (ClutterActor *actor, /* OR */ - clutter_actor_animate (actor, CLUTTER_LINER, 500, + clutter_actor_animate (actor, CLUTTER_LINEAR, 500, "opacity", 0, "signal-swapped::completed", clutter_actor_hide, actor, NULL);