ami pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=4d340f211471830908eb51f249a2b3aa7910c19e

commit 4d340f211471830908eb51f249a2b3aa7910c19e
Author: Amitesh Singh <amitesh...@samsung.com>
Date:   Wed Dec 13 13:26:37 2017 +0900

    Revert "re-enable building against latest efl git"
    
    This reverts commit a782beba82e77c374228be2aaf1cfa09bcc40aaf.
    
    the legacy API was missing. I added it in EFL now.
    Refer 1264fb4af2 in EFL.
    
    Fixes T6500
---
 src/bin/e_comp_object.c | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c
index acc3bc5b6..c1a7941c7 100644
--- a/src/bin/e_comp_object.c
+++ b/src/bin/e_comp_object.c
@@ -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;
      }

-- 


Reply via email to