[elementary] Fix return value on function.

SVN revision: 65515
This commit is contained in:
Gustavo Lima Chaves 2011-11-22 12:37:26 +00:00
parent cbc4f4a143
commit 080f67be82
1 changed files with 1 additions and 1 deletions

View File

@ -2181,7 +2181,7 @@ elm_win_focus_get(const Evas_Object *obj)
Elm_Win *win;
ELM_CHECK_WIDTYPE(obj, widtype);
win = elm_widget_data_get(obj);
if (!win) return;
if (!win) return EINA_FALSE;
return ecore_evas_focus_get(win->ee);
}