summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hirt <hirt.danny@gmail.com>2017-06-08 08:11:35 +0300
committerDaniel Hirt <hirt.danny@gmail.com>2017-06-08 08:11:35 +0300
commit89dded496a60dc745762c10f369d18d848e64f57 (patch)
tree2883a4c965c21562611230a7b150349696b6f0f9
parent06eeda3e8d4db000946049a627abf1b9b38ff496 (diff)
downloadefl-89dded496a60dc745762c10f369d18d848e64f57.tar.gz
Canvas text: fixup port of cursor again
-rw-r--r--src/lib/evas/canvas/evas_object_textblock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/evas/canvas/evas_object_textblock.c b/src/lib/evas/canvas/evas_object_textblock.c
index eb79374c15..067fdc0f32 100644
--- a/src/lib/evas/canvas/evas_object_textblock.c
+++ b/src/lib/evas/canvas/evas_object_textblock.c
@@ -12903,14 +12903,14 @@ evas_object_textblock_free(Evas_Object *eo_obj)
{
evas_object_textblock_style_user_pop(eo_obj);
}
- evas_textblock_cursor_free(o->cursor);
+ free(o->cursor);
while (o->cursors)
{
Efl_Canvas_Text_Cursor *cur;
cur = (Efl_Canvas_Text_Cursor *)o->cursors->data;
o->cursors = eina_list_remove_list(o->cursors, o->cursors);
- evas_textblock_cursor_free(cur);
+ free(cur);
}
if (o->repch) eina_stringshare_del(o->repch);
if (o->ellip_ti) _item_free(eo_obj, NULL, _ITEM(o->ellip_ti));