From 6cae002d337ba2d573f31bb29ef0ccfe8d985553 Mon Sep 17 00:00:00 2001 From: Brett Nash Date: Wed, 4 Aug 2010 02:03:45 +0000 Subject: [PATCH] eina_list: Return false on error. Maybe Eina_Bool needs a 'file not found' error or something. SVN revision: 50799 --- src/lib/elm_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_list.c b/src/lib/elm_list.c index 57ad27c..3f37baa 100644 --- a/src/lib/elm_list.c +++ b/src/lib/elm_list.c @@ -1164,7 +1164,7 @@ elm_list_item_separator_set(Elm_List_Item *it, Eina_Bool setting) EAPI Eina_Bool elm_list_item_separator_get(const Elm_List_Item *it) { - ELM_LIST_ITEM_CHECK_DELETED_RETURN(it); + ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, EINA_FALSE); return it->is_separator; } -- 2.7.4