edje: Minor fix (return proper bool value)

This commit is contained in:
Jean-Philippe Andre 2016-07-26 11:09:43 +09:00
parent 3590010003
commit 9f04590bbf
1 changed files with 1 additions and 2 deletions

View File

@ -551,8 +551,7 @@ EAPI Eina_Bool
edje_object_part_box_prepend(Edje_Object *obj, const char *part, Evas_Object *child)
{
Eo *box = PART_BOX_GET(obj, part, EINA_FALSE);
efl_pack_begin(box, child);
return EINA_TRUE;
return efl_pack_begin(box, child);
}
EAPI Eina_Bool