evas: fix build warning.

here const pointer access is no problem.
This commit is contained in:
ChunEon Park 2014-11-28 13:29:00 +09:00
parent 3e4a191e3e
commit 47ec70c003
1 changed files with 1 additions and 1 deletions

View File

@ -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;