Revert "re-enable building against latest efl git"

This reverts commit a782beba82.

the legacy API was missing. I added it in EFL now.
Refer 1264fb4af2 in EFL.

Fixes T6500
This commit is contained in:
Amitesh Singh 2017-12-13 13:26:37 +09:00
parent a782beba82
commit 4d340f2114
1 changed files with 1 additions and 11 deletions

View File

@ -3365,17 +3365,7 @@ e_comp_object_coords_inside_input_area(Evas_Object *obj, int x, int y)
Eina_Array_Iterator it;
EINA_ARRAY_ITER_NEXT(cw->input_objs, i, rect, it)
{
#ifndef EFL_VERSION_1_21
if (evas_object_pointer_coords_inside_get(rect, x, y))
return EINA_TRUE;
#else
Eina_Position2D pos = {x, y};
if (evas_object_coords_inside_get(rect, pos))
return EINA_TRUE;
#endif
}
if (evas_object_pointer_coords_inside_get(rect, x, y)) return EINA_TRUE;
return EINA_FALSE;
}