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);