elementary: Fix return values to use Eina_Bool

Summary: This function is expecting Eina_Bool as the return value, not
ints so let's use EINA_FALSE here.

NB: this just fixes a copy/paste issue

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-01-05 12:17:03 -05:00
parent 5f325de444
commit 4a07808590
1 changed files with 2 additions and 2 deletions

View File

@ -2989,9 +2989,9 @@ _wl_elm_drag_start(Evas_Object *obj, Elm_Sel_Format format EINA_UNUSED, const ch
Evas *evas;
if (!(evas = evas_object_evas_get(obj)))
return 0;
return EINA_FALSE;
if (!(ee = ecore_evas_ecore_evas_get(evas)))
return 0;
return EINA_FALSE;
parent = ecore_evas_wayland_window_get(ee);
}