From aa06f2b4fd4ff3033e5f38db43f1c19f552a5d49 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Sun, 8 May 2011 07:33:25 +0000 Subject: [PATCH] elmdentica, ephoto: Applied elm_box/table/toolbar API changes. SVN revision: 59266 --- src/bin/ephoto_thumb_browser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/ephoto_thumb_browser.c b/src/bin/ephoto_thumb_browser.c index 3f8616c..16fdeb5 100644 --- a/src/bin/ephoto_thumb_browser.c +++ b/src/bin/ephoto_thumb_browser.c @@ -473,7 +473,7 @@ ephoto_thumb_browser_add(Ephoto *ephoto, Evas_Object *parent) } tb->toolbar = elm_toolbar_add(tb->layout); - elm_toolbar_homogenous_set(tb->toolbar, EINA_FALSE); + elm_toolbar_homogeneous_set(tb->toolbar, EINA_FALSE); elm_toolbar_mode_shrink_set(tb->toolbar, ELM_TOOLBAR_SHRINK_MENU); elm_toolbar_menu_parent_set(tb->toolbar, parent); evas_object_size_hint_weight_set(tb->toolbar, 0.0, 0.0); @@ -496,7 +496,7 @@ ephoto_thumb_browser_add(Ephoto *ephoto, Evas_Object *parent) tb->box = elm_box_add(tb->layout); elm_box_horizontal_set(tb->box, EINA_FALSE); - elm_box_homogenous_set(tb->box, EINA_FALSE); + elm_box_homogeneous_set(tb->box, EINA_FALSE); evas_object_size_hint_weight_set (tb->box, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_show(tb->box);