correct returned value of focus_get function.

Function eventor_object_focus_get needs to return
Eina_Bool value.
This commit is contained in:
Thiep Ha 2016-07-22 11:46:23 +09:00
parent d0f6bb2e36
commit 5d1cec3e7b
1 changed files with 1 additions and 1 deletions

View File

@ -672,7 +672,7 @@ _enventor_object_focus_set(Eo *obj EINA_UNUSED,
EOLIAN static Eina_Bool
_enventor_object_focus_get(Eo *obj EINA_UNUSED, Enventor_Object_Data *pd)
{
if (!pd->focused_it) return;
if (!pd->focused_it) return EINA_FALSE;
return edit_focus_get(pd->focused_it->ed);
}