fix ecore evas pointer warping

This commit is contained in:
discomfitor 2013-10-25 17:14:43 +01:00
parent fe5dd4bcda
commit 0b8d4e4bce
1 changed files with 2 additions and 2 deletions

View File

@ -2387,8 +2387,8 @@ ecore_evas_pointer_warp(const Ecore_Evas *ee, Evas_Coord x, Evas_Coord y)
return EINA_FALSE;
}
if (ee->func.fn_pointer_warp)
return ee->func.fn_pointer_warp(ee, x, y);
if (ee->engine.func->fn_pointer_warp)
return ee->engine.func->fn_pointer_warp(ee, x, y);
return EINA_FALSE;
}