Text cursor: fix macOS build.

On macOS build failed with
lib/elementary/efl_ui_internal_text_interactive.c:801:50: error: too few
arguments to function call, expected 2, have 1
This commit is contained in:
Mykyta Biliavskyi 2017-06-12 13:44:55 +03:00
parent 9b1e785f8e
commit f5b1cb89a0
1 changed files with 2 additions and 2 deletions

View File

@ -798,7 +798,7 @@ _key_down_cb(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_Object *obj, void
efl_text_cursor_char_prev(obj, cur);
#if defined(__APPLE__) && defined(__MACH__)
if (altgr) efl_text_cursor_word_start(cur);
if (altgr) efl_text_cursor_word_start(obj, cur);
#else
/* If control is pressed, go to the start of the word */
if (control) efl_text_cursor_word_start(obj, cur);
@ -814,7 +814,7 @@ _key_down_cb(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_Object *obj, void
_key_down_sel_pre(obj, cur, en, shift, EINA_TRUE);
#if defined(__APPLE__) && defined(__MACH__)
if (altgr) efl_text_cursor_word_end(cur);
if (altgr) efl_text_cursor_word_end(obj, cur);
#else
/* If control is pressed, go to the end of the word */
if (control) efl_text_cursor_word_end(obj, cur);