rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=45f28c154367ad2f92ebd951c9d22735bffc3bc1

commit 45f28c154367ad2f92ebd951c9d22735bffc3bc1
Author: Vyacheslav Reutskiy <v.reuts...@samsung.com>
Date:   Tue Mar 22 08:17:31 2016 +0200

    ewe_combobox: fix return value of select item function
---
 src/lib/ewe_combobox.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/lib/ewe_combobox.c b/src/lib/ewe_combobox.c
index 439ce29..add05f2 100644
--- a/src/lib/ewe_combobox.c
+++ b/src/lib/ewe_combobox.c
@@ -358,7 +358,8 @@ _ewe_combobox_select_item_set(Eo *obj EINA_UNUSED,
    Ewe_Combobox_Item *item;
    item = eina_list_nth(sd->items, index);
    sd->selected = item;
-   return edje_object_part_text_set(sd->combobox, "ewe.text", item->title);
+   edje_object_part_text_set(sd->combobox, "ewe.text", item->title);
+   return EINA_TRUE;
 }
 
 EOLIAN static Ewe_Combobox_Item *

-- 


Reply via email to