aboutsummaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorjasper2007-05-28 18:34:27 +0000
committerjasper2007-05-28 18:34:27 +0000
commit4cf5a98fa42b6d99a178eda07a9e42f91e02c97d (patch)
tree2e025de77387e856ddb58f0b918477d8da17b3c6 /input.c
parent5116ffb4630d2bcf16cd2ab429dc6baba29e40bb (diff)
downloadcwm-4cf5a98fa42b6d99a178eda07a9e42f91e02c97d.tar.gz
convert globals from G_foo to Foo, as per TODO.
"looks good" pedro@, ok matthieu@
Diffstat (limited to 'input.c')
-rw-r--r--input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/input.c b/input.c
index 28ce7f4..a68dc01 100644
--- a/input.c
+++ b/input.c
@@ -4,7 +4,7 @@
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
- * $Id: input.c,v 1.2 2007/04/27 18:10:39 bernd Exp $
+ * $Id: input.c,v 1.3 2007/05/28 18:34:27 jasper Exp $
*/
#include "headers.h"
@@ -20,9 +20,9 @@ input_keycodetrans(KeyCode kc, u_int state,
*chr = '\0';
if (state & ShiftMask)
- ks = XKeycodeToKeysym(G_dpy, kc, 1);
+ ks = XKeycodeToKeysym(X_Dpy, kc, 1);
else
- ks = XKeycodeToKeysym(G_dpy, kc, 0);
+ ks = XKeycodeToKeysym(X_Dpy, kc, 0);
/* Look for control characters. */
switch (ks) {