From 79b5652de61362a137917a1b46fe87e81a48c406 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Mon, 14 May 2012 16:21:06 +0300 Subject: [PATCH] window: fix missed xkb API adaptation Oddly enough, this failed to build on Android, but not otherwise. Signed-off-by: Pekka Paalanen --- clients/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/window.c b/clients/window.c index e14edb0..472c85d 100644 --- a/clients/window.c +++ b/clients/window.c @@ -1850,7 +1850,7 @@ input_handle_key(void *data, struct wl_input_device *input_device, if (num_syms == 1) sym = syms[0]; else - sym = NoSymbol; + sym = XKB_KEY_NoSymbol; (*window->key_handler)(window, input, time, key, sym, state, window->user_data); -- 2.7.4