summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJess VanDerwalker <washu@sonic.net>2012-07-31 14:48:47 -0700
committerJess VanDerwalker <washu@sonic.net>2012-08-29 09:15:41 -0700
commit807a5b013a0bf888b5c34b8e8bf3b5f3fa0f698b (patch)
tree9fa4d0c42e0f783e1a4d2c8c1486bb30ed2e123f
parenta03984bad4ea754c4f601b1e2c236b2e0ce9c414 (diff)
libxcwm: Removed keysym cruft from previous testing.
Removed a call to xcb_key_symbols_alloc() that serves no purpose. Believe left over from test code that has since been removed. Signed-off-by: Jess VanDerwalker <washu@sonic.net> Reviewed-by: Jeremy Huddlestone Seqouia <jeremyhu@apple.com>
-rw-r--r--src/libxcwm/context.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libxcwm/context.c b/src/libxcwm/context.c
index c04c02d..c5bf207 100644
--- a/src/libxcwm/context.c
+++ b/src/libxcwm/context.c
@@ -32,13 +32,8 @@
#include <xcb/xcb_keysyms.h>
#include <xcwm/xcwm.h>
#include "xcwm_internal.h"
-#include "X11/keysym.h"
#include <string.h>
-// aaron key stuff
-#define XK_Shift_L 0xffe1
-xcb_key_symbols_t *syms = NULL;
-
// This init function needs set the window to be registered for events!
// First one we should handle is damage
xcwm_context_t *
@@ -117,7 +112,6 @@ xcwm_context_open(char *display)
/* Add the root window to our list of windows being managed */
_xcwm_add_window(root_context->root_window);
- syms = xcb_key_symbols_alloc(conn);
_xcwm_init_extension(conn, "XTEST");
_xcwm_init_extension(conn, "XKEYBOARD");