diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-05-19 17:32:23 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-05-19 17:32:23 +0000 |
commit | c68550331b64e1671ef0f7827245be0f0219af7e (patch) | |
tree | c1c334d166dbcf2251d4a9ccbe794ef59f599c53 /app/cwm | |
parent | 45b49f1a106bc20e1f629a838d571d53affcb0b2 (diff) |
Function prototypes should not have parameter names in them. These must
have been missed last time i knfed this.
ok okan.
Diffstat (limited to 'app/cwm')
-rw-r--r-- | app/cwm/calmwm.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/app/cwm/calmwm.h b/app/cwm/calmwm.h index 1472aa1a3..a3a3da2f3 100644 --- a/app/cwm/calmwm.h +++ b/app/cwm/calmwm.h @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: calmwm.h,v 1.46 2008/05/19 17:24:19 okan Exp $ + * $Id: calmwm.h,v 1.47 2008/05/19 17:32:22 oga Exp $ */ #ifndef _CALMWM_H_ @@ -345,13 +345,13 @@ void client_maximize(struct client_ctx *); void client_vertmaximize(struct client_ctx *); u_long client_bg_pixel(struct client_ctx *); Pixmap client_bg_pixmap(struct client_ctx *); -void client_map(struct client_ctx *cc); -void client_mtf(struct client_ctx *cc); -struct client_ctx *client_cycle(int reverse); -struct client_ctx *client_mrunext(struct client_ctx *cc); -struct client_ctx *client_mruprev(struct client_ctx *cc); -void client_gethints(struct client_ctx *cc); -void client_freehints(struct client_ctx *cc); +void client_map(struct client_ctx *); +void client_mtf(struct client_ctx *); +struct client_ctx *client_cycle(int); +struct client_ctx *client_mrunext(struct client_ctx *); +struct client_ctx *client_mruprev(struct client_ctx *); +void client_gethints(struct client_ctx *); +void client_freehints(struct client_ctx *); void client_do_shape(struct client_ctx *); void xev_handle_maprequest(struct xevent *, XEvent *); @@ -450,13 +450,13 @@ void kbfunc_term(struct client_ctx *, void *); void kbfunc_lock(struct client_ctx *, void *); void search_init(struct screen_ctx *); -struct menu *search_start(struct menu_q *menuq, - void (*match)(struct menu_q *, struct menu_q *, char *), - void (*print)(struct menu *mi, int), +struct menu *search_start(struct menu_q *, + void (*)(struct menu_q *, struct menu_q *, char *), + void (*)(struct menu *, int), char *, int); void search_match_client(struct menu_q *, struct menu_q *, char *); -void search_print_client(struct menu *mi, int list); +void search_print_client(struct menu *, int); void search_match_text(struct menu_q *, struct menu_q *, char *); void search_match_exec(struct menu_q *, struct menu_q *, |