From 539e84db5542d28cd485e3d2ad724c2ef670d1d9 Mon Sep 17 00:00:00 2001 From: Aharon Hillel Date: Mon, 18 Jun 2012 07:23:04 +0000 Subject: [PATCH] clouseau: changed all elm_icon_file_set(), depricated, to elm_image_file_set() Signed-off-by: Aharon Hillel SVN revision: 72351 --- src/bin/clouseau.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/clouseau.c b/src/bin/clouseau.c index 6b954de..3b7b961 100644 --- a/src/bin/clouseau.c +++ b/src/bin/clouseau.c @@ -128,7 +128,7 @@ _set_button(Evas_Object *w, Evas_Object *bt, char buf[1024]; Evas_Object *ic = elm_icon_add(w); snprintf(buf, sizeof(buf), "%s%s", PACKAGE_DATA_DIR, ic_name); - elm_icon_file_set(ic, buf, NULL); + elm_image_file_set(ic, buf, NULL); elm_object_part_content_set(bt, "icon", ic); elm_object_tooltip_text_set(bt, tip); elm_object_disabled_set(bt, en);