efl_ui_win: fix compile when HAVE_ELEMENTARY_X is not defined

Reviewers: vtorri

Reviewed By: vtorri

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8101
This commit is contained in:
Mike Blumenkrantz 2019-03-05 07:20:57 -05:00
parent 272d1b5fc2
commit 9e8a565bb6
1 changed files with 2 additions and 1 deletions

View File

@ -8864,6 +8864,7 @@ elm_win_keygrab_set(Elm_Win *obj, const char *key,
ret = ecore_x_window_keygrab_set(sd->x.xwin, key, 0, 0, 0, x_grab_mode);
}
#else
(void)obj;
(void)key;
(void)grab_mode;
#endif
@ -8883,7 +8884,7 @@ elm_win_keygrab_unset(Elm_Win *obj, const char *key,
if (sd->x.xwin)
ret = ecore_x_window_keygrab_unset(sd->x.xwin, key, 0, 0);
#else
(void)sd;
(void)obj;
(void)key;
#endif
return ret;