From b8f4e5d1372d59f3b60b7d9bd2a9b9a60fa199e3 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Thu, 7 Jun 2012 11:41:03 +0000 Subject: [PATCH] ephoto: Applied elm_icon API change. SVN revision: 71806 --- src/bin/ephoto_main.c | 2 +- src/bin/ephoto_single_browser.c | 2 +- src/bin/ephoto_thumb_browser.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/ephoto_main.c b/src/bin/ephoto_main.c index 69f963c..9b7fdcc 100644 --- a/src/bin/ephoto_main.c +++ b/src/bin/ephoto_main.c @@ -495,7 +495,7 @@ ephoto_thumb_path_set(Evas_Object *o, const char *path) group = eina_list_data_get(g); edje_file_collection_list_free(g); } - elm_icon_file_set(o, path, group); + elm_image_file_set(o, path, group); evas_object_data_set(o, "ephoto_format", NULL); return; } diff --git a/src/bin/ephoto_single_browser.c b/src/bin/ephoto_single_browser.c index 7ea3c92..a17db78 100644 --- a/src/bin/ephoto_single_browser.c +++ b/src/bin/ephoto_single_browser.c @@ -825,7 +825,7 @@ _button_add(Evas_Object *box, const char *image) but = elm_button_add(box); ic = elm_icon_add(but); - elm_icon_file_set(ic, image, NULL); + elm_image_file_set(ic, image, NULL); evas_object_size_hint_min_set(ic, 16, 16); evas_object_size_hint_aspect_set(ic, EVAS_ASPECT_CONTROL_BOTH, 1, 1); diff --git a/src/bin/ephoto_thumb_browser.c b/src/bin/ephoto_thumb_browser.c index 77d06b3..81b49cb 100644 --- a/src/bin/ephoto_thumb_browser.c +++ b/src/bin/ephoto_thumb_browser.c @@ -449,7 +449,7 @@ _button_add(Evas_Object *box, const char *image) but = elm_button_add(box); ic = elm_icon_add(but); - elm_icon_file_set(ic, image, NULL); + elm_image_file_set(ic, image, NULL); evas_object_size_hint_min_set(ic, 16, 16); evas_object_size_hint_aspect_set(ic, EVAS_ASPECT_CONTROL_BOTH, 1, 1);