yoz pushed a commit to branch master.

http://git.enlightenment.org/misc/entrance.git/commit/?id=bb8301501f7ef77080621f54c47b0a4d3be9cd32

commit bb8301501f7ef77080621f54c47b0a4d3be9cd32
Author: Michael Bouchaud <y...@efl.so>
Date:   Sat Nov 16 00:51:21 2013 +0100

    entrance: efl 1.8 compliant
---
 src/bin/entrance_fill.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bin/entrance_fill.c b/src/bin/entrance_fill.c
index 95827c4..f6593e4 100644
--- a/src/bin/entrance_fill.c
+++ b/src/bin/entrance_fill.c
@@ -179,13 +179,13 @@ entrance_fill(Evas_Object *obj, Entrance_Fill *ef, 
Eina_List *contents, Entrance
    if (!obj) return;
    if ((type = elm_object_widget_type_get(obj)))
      {
-        if (!strcmp(type, "elm_list"))
+        if (!strcasecmp(type, "elm_list"))
           _entrance_fill_list(obj, ef, contents, fill_cb, func, data);
-        else if (!strcmp(type, "elm_genlist"))
+        else if (!strcasecmp(type, "elm_genlist"))
           _entrance_fill_genlist(obj, ef, contents, fill_cb, func, data);
-        else if (!strcmp(type, "elm_gengrid"))
+        else if (!strcasecmp(type, "elm_gengrid"))
           _entrance_fill_gengrid(obj, ef, contents, fill_cb, func, data);
-        else if (!strcmp(type, "elm_hoversel"))
+        else if (!strcasecmp(type, "elm_hoversel"))
           _entrance_fill_hoversell(obj, ef, contents, fill_cb, func, data);
         else
           {

-- 


Reply via email to