aboutsummaryrefslogtreecommitdiffstats
path: root/kbfunc.c
diff options
context:
space:
mode:
authorjasper2007-06-05 19:03:20 +0000
committerjasper2007-06-05 19:03:20 +0000
commit044c0fe02de73847e6f7539431b3c4b95966be51 (patch)
tree89ed3c012e6e2d1a5073703b591cebf83a6aa951 /kbfunc.c
parente594623ee759089fcbce526363231e802423def0 (diff)
downloadcwm-044c0fe02de73847e6f7539431b3c4b95966be51.tar.gz
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.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/kbfunc.c b/kbfunc.c
index 1dbfe0b..dbd0dc7 100644
--- a/kbfunc.c
+++ b/kbfunc.c
@@ -4,7 +4,7 @@
* Copyright (c) 2004 Martin Murray <mmurray@monkey.org>
* All rights reserved.
*
- * $Id: kbfunc.c,v 1.3 2007/05/28 18:34:27 jasper Exp $
+ * $Id: kbfunc.c,v 1.4 2007/06/05 19:03:20 jasper Exp $
*/
#include "headers.h"
@@ -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