diff options
author | infirit <[email protected]> | 2014-10-24 14:01:20 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-10-24 15:40:43 +0200 |
commit | 897be1b007ea4789a88716d5889e5b9f8c88fbf7 (patch) | |
tree | 7131fefaa2e0c3540a312ddb9e3f08e296c5ce92 /src/core/keybindings.c | |
parent | 1e7c923638600f865601bda3e2f294cadea7a244 (diff) | |
download | marco-897be1b007ea4789a88716d5889e5b9f8c88fbf7.tar.bz2 marco-897be1b007ea4789a88716d5889e5b9f8c88fbf7.tar.xz |
Properly ifdef some KXB code.
Taken out of metacity commit: 238e83a98cf014c9b1082d21541e63f102d441d6
From: Alberts Muktupāvels <[email protected]>
Diffstat (limited to 'src/core/keybindings.c')
-rw-r--r-- | src/core/keybindings.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/keybindings.c b/src/core/keybindings.c index 9ddaf885..e0b2a7aa 100644 --- a/src/core/keybindings.c +++ b/src/core/keybindings.c @@ -1273,9 +1273,12 @@ meta_display_process_key_event (MetaDisplay *display, /* window may be NULL */ +#ifdef HAVE_XKB keysym = XKeycodeToKeysym (display->xdisplay, event->xkey.keycode, 0); - str = XKeysymToString (keysym); +#else + str = NULL; +#endif /* was topic */ meta_topic (META_DEBUG_KEYBINDINGS, |