diff options
author | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2014-11-28 13:24:24 +0900 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2014-11-28 13:24:24 +0900 |
commit | 3e4a191e3ecbb3441f66215c61bf42f7d047de62 (patch) | |
tree | f55714f536f79d5a226151b33dee78922448a5e6 /src/lib/evas/canvas | |
parent | 30623aea9ebb1b3923bed51a7c42c55cb8602ef0 (diff) |
evas_map: Remove unnecessary check for current map
Summary:
Remove unnecessary check for current map
@fix
Reviewers: Hermet
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D1708
Diffstat (limited to 'src/lib/evas/canvas')
-rw-r--r-- | src/lib/evas/canvas/evas_map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/evas/canvas/evas_map.c b/src/lib/evas/canvas/evas_map.c index 4680828cbc..90c236b4b3 100644 --- a/src/lib/evas/canvas/evas_map.c +++ b/src/lib/evas/canvas/evas_map.c | |||
@@ -1230,7 +1230,7 @@ evas_object_map_update(Evas_Object *eo_obj, | |||
1230 | 1230 | ||
1231 | if (!obj->changed_map) return EINA_FALSE; | 1231 | if (!obj->changed_map) return EINA_FALSE; |
1232 | 1232 | ||
1233 | if (obj->map->cur.map && obj->map->spans && obj->map->cur.map->count != obj->map->spans->count) | 1233 | if (obj->map->spans && obj->map->cur.map->count != obj->map->spans->count) |
1234 | { | 1234 | { |
1235 | EINA_COW_WRITE_BEGIN(evas_object_map_cow, obj->map, Evas_Object_Map_Data, map_write) | 1235 | EINA_COW_WRITE_BEGIN(evas_object_map_cow, obj->map, Evas_Object_Map_Data, map_write) |
1236 | { | 1236 | { |