discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=00d3cdd7ab0fe5a596198ea5e3792736681cc0ba
commit 00d3cdd7ab0fe5a596198ea5e3792736681cc0ba Author: Mike Blumenkrantz <[email protected]> Date: Tue Jan 19 16:03:58 2016 -0500 remove WAYLAND_ONLY ifdefs from kbd layout change actions --- src/bin/e_actions.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index 3d8d2c4..badc1c3 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -2928,23 +2928,17 @@ ACT_FN_GO(kbd_layout, ) errno = 0; x = strtoul(params, NULL, 10); if (errno || (x > eina_list_count(e_config->xkb.used_layouts) - 1)) return; -#ifndef HAVE_WAYLAND_ONLY e_xkb_layout_set(eina_list_nth(e_config->xkb.used_layouts, x)); -#endif } ACT_FN_GO(kbd_layout_next, EINA_UNUSED) { -#ifndef HAVE_WAYLAND_ONLY e_xkb_layout_next(); -#endif } ACT_FN_GO(kbd_layout_prev, EINA_UNUSED) { -#ifndef HAVE_WAYLAND_ONLY e_xkb_layout_prev(); -#endif } ACT_FN_GO(module_enable, ) --
