summary refs log tree commit diff
path: root/kbfunc.c
diff options
context:
space:
mode:
authorjasper <jasper>2007-06-05 19:03:20 +0000
committerjasper <jasper>2007-06-05 19:03:20 +0000
commitc025dc90897fa7f96859e84b709443d70e8a2980 (patch)
tree91922c2a20c249e6501e5a37dbdeae4c2261d4f5 /kbfunc.c
parent15fdb76df90671c40afed1b95b7e2ee3a52aa1ce (diff)
downloadcwm-c025dc90897fa7f96859e84b709443d70e8a2980.tar.gz
cwm-c025dc90897fa7f96859e84b709443d70e8a2980.tar.xz
cwm-c025dc90897fa7f96859e84b709443d70e8a2980.zip
make it possible to cycle through the windows when non are selected.
(eg. when they're hidden, now you can cycle through them)

from aon@iki.fi
Diffstat (limited to 'kbfunc.c')
-rw-r--r--kbfunc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kbfunc.c b/kbfunc.c
index 7996442..99a7ee2 100644
--- a/kbfunc.c
+++ b/kbfunc.c
@@ -85,15 +85,15 @@ kbfunc_menu_search(struct client_ctx *scratch, void *arg)
 }
 
 void
-kbfunc_client_cycle(struct client_ctx *cc, void *arg)
+kbfunc_client_cycle(struct client_ctx *scratch, void *arg)
 {
-	client_cyclenext(cc, 0);
+	client_cyclenext(0);
 }
 
 void
-kbfunc_client_rcycle(struct client_ctx *cc, void *arg)
+kbfunc_client_rcycle(struct client_ctx *scratch, void *arg)
 {
-	client_cyclenext(cc, 1);
+	client_cyclenext(1);
 }
 
 void