diff options
author | Pekka Paalanen <ppaalanen@gmail.com> | 2012-05-14 16:21:06 +0300 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-05-14 10:02:12 -0400 |
commit | 79b5652de61362a137917a1b46fe87e81a48c406 (patch) | |
tree | cb11e8e0f5071721755824019dd3580827f8cfc6 | |
parent | 7c8b116065c53caa9da13788e6a639e05c664cf8 (diff) |
window: fix missed xkb API adaptation
Oddly enough, this failed to build on Android, but not otherwise.
Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
-rw-r--r-- | clients/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |