Commit f0cb4ee2191b097cb44370a37259b39e54f23e00

Daniel Stone 2012-03-27T16:15:06

Update xkb_filter_group_lock_func for xkb_key_direction Signed-off-by: Daniel Stone <daniel@fooishbar.org>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/src/state.c b/src/state.c
index ff5cd09..9dda257 100644
--- a/src/state.c
+++ b/src/state.c
@@ -187,12 +187,12 @@ xkb_filter_group_set_new(struct xkb_state *state, xkb_keycode_t keycode,
 
 static int
 xkb_filter_group_lock_func(struct xkb_filter *filter, xkb_keycode_t keycode,
-                           int down)
+                           enum xkb_key_direction direction)
 {
     if (keycode != filter->keycode)
         return 1;
 
-    if (down) {
+    if (direction == XKB_KEY_DOWN) {
         filter->refcnt++;
         return 0;
     }