diff options
author | Cedric Bail <cedric.bail@samsung.com> | 2013-11-04 11:27:59 +0900 |
---|---|---|
committer | Cedric Bail <cedric.bail@samsung.com> | 2013-11-04 11:27:59 +0900 |
commit | f4ae52ea67b9c7885bc2911ae97d4d81e00dd70d (patch) | |
tree | b897dbfb4ccdc80b0aef11e7b94325329d6fd00d /src/lib/evas/canvas/evas_object_text.c | |
parent | 687e4ae7442e9763e0587553d50a4177d2f9b6ca (diff) |
evas: make mmap_set use const Eina_File.
Diffstat (limited to '')
-rw-r--r-- | src/lib/evas/canvas/evas_object_text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/evas/canvas/evas_object_text.c b/src/lib/evas/canvas/evas_object_text.c index b61e7d0c68..dd16e21fd8 100644 --- a/src/lib/evas/canvas/evas_object_text.c +++ b/src/lib/evas/canvas/evas_object_text.c | |||
@@ -171,7 +171,7 @@ _evas_object_text_item_del(Evas_Object_Text *o, Evas_Object_Text_Item *it) | |||
171 | 171 | ||
172 | if ((EINA_INLIST_GET(it)->next) || | 172 | if ((EINA_INLIST_GET(it)->next) || |
173 | (EINA_INLIST_GET(it)->prev) || | 173 | (EINA_INLIST_GET(it)->prev) || |
174 | (o->items == (EINA_INLIST_GET(it)))) | 174 | (EINA_INLIST_GET(o->items) == (EINA_INLIST_GET(it)))) |
175 | o->items = (Evas_Object_Text_Item *)eina_inlist_remove | 175 | o->items = (Evas_Object_Text_Item *)eina_inlist_remove |
176 | (EINA_INLIST_GET(o->items), EINA_INLIST_GET(it)); | 176 | (EINA_INLIST_GET(o->items), EINA_INLIST_GET(it)); |
177 | _evas_object_text_item_clean(it); | 177 | _evas_object_text_item_clean(it); |