From 463617699c21228bba986f24be42bc4e8702b120 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Roberto=20de=20Souza?= Date: Mon, 10 Dec 2012 06:58:58 +0000 Subject: [PATCH] =?UTF-8?q?From:=20Jos=C3=A9=20Roberto=20de=20Souza=20=20Subject:=20[E-devel]=20[PATCH]=20e:?= =?UTF-8?q?=20Return=20EINA=5FFALSE=20if=20icon=20path=20was=20not=20found?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SVN revision: 80567 --- src/bin/e_icon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_icon.c b/src/bin/e_icon.c index 4252f889f..3c0bc40a6 100644 --- a/src/bin/e_icon.c +++ b/src/bin/e_icon.c @@ -444,7 +444,7 @@ e_icon_fdo_icon_set(Evas_Object *obj, const char *icon) if (!sd->fdo) return EINA_FALSE; path = efreet_icon_path_find(e_config->icon_theme, sd->fdo, sd->size); - if (!path) return EINA_TRUE; + if (!path) return EINA_FALSE; len = strlen(icon); if ((len > 4) && (!strcasecmp(icon + len - 4, ".edj")))