efl_ui_win: match return value to function type in elm_win_window_id_get

ref 08c9f99134

Signed-off-by: Mike Blumenkrantz <zmike@osg.samsung.com>
This commit is contained in:
Cedric BAIL 2018-03-20 13:15:21 -04:00 committed by Cedric Bail
parent 21f96c2a71
commit cd8952cc6c
1 changed files with 1 additions and 1 deletions

View File

@ -8259,7 +8259,7 @@ elm_win_window_id_get(const Evas_Object *obj)
if (!evas_object_smart_type_check_ptr(obj, MY_CLASS_NAME_LEGACY))
{
Ecore_Evas *ee = ecore_evas_ecore_evas_get(evas_object_evas_get(obj));
if (!ee) return NULL;
if (!ee) return 0;
return ecore_evas_window_get(ee);
}