elementary: Fix a warning

elm_win.c: In function ‘elm_win_focus_get’:
elm_win.c:2182:4: warning: ‘return’ with no value, in function returning non-void

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 65527
This commit is contained in:
Mike McCormack 2011-11-23 07:45:48 +00:00 committed by Mike McCormack
parent 4e13dde318
commit 1570bdbe3a
1 changed files with 1 additions and 1 deletions

View File

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