hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=47ec70c003b4393f95dfedf385aeb498ed1254ed

commit 47ec70c003b4393f95dfedf385aeb498ed1254ed
Author: ChunEon Park <[email protected]>
Date:   Fri Nov 28 13:29:00 2014 +0900

    evas: fix build warning.
    
    here const pointer access is no problem.
---
 src/lib/evas/canvas/evas_object_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/evas/canvas/evas_object_main.c 
b/src/lib/evas/canvas/evas_object_main.c
index f1459f5..25f802d 100644
--- a/src/lib/evas/canvas/evas_object_main.c
+++ b/src/lib/evas/canvas/evas_object_main.c
@@ -750,7 +750,7 @@ _evas_object_position_set(Eo *eo_obj, 
Evas_Object_Protected_Data *obj, Evas_Coor
 
    if ((obj->cur->geometry.x == x) && (obj->cur->geometry.y == y)) return;
 
-   Evas_Map *map = eo_do(eo_obj, evas_obj_map_get());
+   Evas_Map *map = (Evas_Map *)eo_do(eo_obj, evas_obj_map_get());
    if (map && map->move_sync.enabled)
      {
         Evas_Coord diff_x = x - obj->cur->geometry.x;

-- 


Reply via email to