edc_editor: remove unnecessary code

Summary:
remove unnecessary code in entry_recover function

@fix

Reviewers: Hermet, Jaehyun_Cho

Differential Revision: https://phab.enlightenment.org/D3638
This commit is contained in:
taehyub 2016-02-02 17:46:36 +09:00 committed by Jaehyun Cho
parent bf5e38298d
commit be94d88921
1 changed files with 0 additions and 2 deletions

View File

@ -128,11 +128,9 @@ entry_recover(edit_data *ed, int cursor_pos)
//recover selection region
const char *selected = elm_entry_selection_get(ed->en_edit);
if (!selected) return;
char *utf8 = evas_textblock_text_markup_to_utf8(NULL, selected);
ed->on_select_recover = EINA_TRUE;
elm_entry_select_region_set(ed->en_edit, ed->select_pos, cursor_pos);
ed->on_select_recover = EINA_FALSE;
free(utf8);
}
static void