From 750821f199918f49ae4dc7b57a41749aa213eaec Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 24 May 2010 08:26:18 +0000 Subject: [PATCH] fix smart_object_add param order (hooray for Sachiel at 4:30am!) SVN revision: 49175 --- src/lib/elm_flip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_flip.c b/src/lib/elm_flip.c index 9daf720..1493706 100644 --- a/src/lib/elm_flip.c +++ b/src/lib/elm_flip.c @@ -346,7 +346,7 @@ elm_flip_content_front_set(Evas_Object *obj, Evas_Object *content) wd->front.content = content; if (content) { - elm_widget_sub_object_add(content, obj); + elm_widget_sub_object_add(obj, content); evas_object_smart_member_add(content, obj); evas_object_clip_set(content, wd->front.clip); evas_object_event_callback_add(content, @@ -386,7 +386,7 @@ elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content) if (content) { elm_widget_sub_object_add(content, obj); - evas_object_smart_member_add(content, obj); + evas_object_smart_member_add(obj, content); evas_object_clip_set(content, wd->back.clip); evas_object_event_callback_add(content, EVAS_CALLBACK_CHANGED_SIZE_HINTS, -- 2.7.4