Removing the warning about »XKeycodeToKeysym. - tabbed - tab interface for app… | |
git clone git://git.suckless.org/tabbed | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit e3080747c51ac1912e3fae7a45a97bd021b61daa | |
parent cd09ae2592637e42d4ba0594303f129b3b0b18a1 | |
Author: Christoph Lohmann <[email protected]> | |
Date: Sat, 7 Jul 2012 22:50:26 +0200 | |
Removing the warning about »XKeycodeToKeysym. | |
Diffstat: | |
M tabbed.c | 3 ++- | |
1 file changed, 2 insertions(+), 1 deletion(-) | |
--- | |
diff --git a/tabbed.c b/tabbed.c | |
@@ -14,6 +14,7 @@ | |
#include <X11/Xlib.h> | |
#include <X11/Xproto.h> | |
#include <X11/Xutil.h> | |
+#include <X11/XKBlib.h> | |
#include "arg.h" | |
@@ -542,7 +543,7 @@ keypress(const XEvent *e) { | |
unsigned int i; | |
KeySym keysym; | |
- keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0); | |
+ keysym = XkbKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0, 0); | |
for(i = 0; i < LENGTH(keys); i++) | |
if(keysym == keys[i].keysym | |
&& CLEANMASK(keys[i].mod) == CLEANMASK(ev->state) |