elementary: Fix return values to use Eina_Bool
authorChris Michael <cp.michael@samsung.com>
Mon, 5 Jan 2015 17:17:03 +0000 (12:17 -0500)
committerChris Michael <cp.michael@samsung.com>
Mon, 5 Jan 2015 17:17:03 +0000 (12:17 -0500)
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>
src/lib/elm_cnp.c

index 4ef30e8..1957418 100644 (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);
      }