From 85f49288864b5dd471b7acf0f69a7b06285eacb6 Mon Sep 17 00:00:00 2001 From: ChunEon Park Date: Wed, 8 Jun 2011 20:43:15 +0900 Subject: [PATCH] pager - just renamed a variable. --- src/lib/elm_pager.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/elm_pager.c b/src/lib/elm_pager.c index 25ab9b4..ef1aa14 100644 --- a/src/lib/elm_pager.c +++ b/src/lib/elm_pager.c @@ -169,7 +169,7 @@ static void _eval_top(Evas_Object *obj) { Widget_Data *wd = elm_widget_data_get(obj); - Eina_Bool animate=EINA_TRUE; + Eina_Bool show_noanimate=EINA_TRUE; Item *ittop; if (!wd) return; if (!wd->stack) return; @@ -204,13 +204,13 @@ _eval_top(Evas_Object *obj) } else { - animate = EINA_FALSE; + show_noanimate = EINA_FALSE; } wd->oldtop = wd->top; wd->top = ittop; o = wd->top->base; evas_object_show(o); - if ((!animate)||(wd->disable_animation)) + if ((!show_noanimate)||(wd->disable_animation)) { edje_object_signal_emit(o, "elm,action,show,noanimate", "elm"); } -- 2.7.4