Fix missing return value in pointer warp function.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-07-08 14:00:49 +01:00
parent 76c4140c08
commit 0c66ca7c09
1 changed files with 1 additions and 1 deletions

View File

@ -2387,7 +2387,7 @@ ecore_evas_pointer_warp(const Ecore_Evas *ee, Evas_Coord x, Evas_Coord y)
if (!ECORE_MAGIC_CHECK(ee, ECORE_MAGIC_EVAS))
{
ECORE_MAGIC_FAIL(ee, ECORE_MAGIC_EVAS, "ecore_evas_pointer_warp");
return;
return EINA_FALSE;
}
if (ee->func.fn_pointer_warp)