jaehyun pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=2c1b4ed275c7675d0378ecbb5e56a62b7a2d93c0
commit 2c1b4ed275c7675d0378ecbb5e56a62b7a2d93c0 Author: Jaehyun Cho <[email protected]> Date: Tue Jul 26 23:13:20 2016 +0900 reference: Fix incorrect variable types. --- src/lib/reference.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/reference.c b/src/lib/reference.c index b185309..15cdfb3 100644 --- a/src/lib/reference.c +++ b/src/lib/reference.c @@ -303,8 +303,8 @@ cursor_keyword_data_find(Evas_Object *entry, keyword_data *keyword_root, //Get text before cursor position. Evas_Object *tb = elm_entry_textblock_get(entry); - Evas_Object *cur_begin = evas_object_textblock_cursor_new(tb); - Evas_Object *cur_end = evas_object_textblock_cursor_get(tb); + Evas_Textblock_Cursor *cur_begin = evas_object_textblock_cursor_new(tb); + Evas_Textblock_Cursor *cur_end = evas_object_textblock_cursor_get(tb); char *utf8_text = NULL; Eina_List *keyword_hierarchy = NULL; --
