dwm-meillo
diff dwm.h @ 533:a5567a0d3011
do* has no Arg arument anymore (never called directly)
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Fri, 06 Oct 2006 13:06:37 +0200 |
parents | 651f2c868b31 |
children | 00ccae001069 |
line diff
1.1 --- a/dwm.h Fri Oct 06 11:50:15 2006 +0200 1.2 +++ b/dwm.h Fri Oct 06 13:06:37 2006 +0200 1.3 @@ -99,7 +99,7 @@ 1.4 extern int screen, sx, sy, sw, sh; /* screen geometry */ 1.5 extern unsigned int master, ntags, numlockmask; /* master percent, number of tags, dynamic lock mask */ 1.6 extern void (*handler[LASTEvent])(XEvent *); /* event handler */ 1.7 -extern void (*arrange)(Arg *); /* arrange function, indicates mode */ 1.8 +extern void (*arrange)(void); /* arrange function, indicates mode */ 1.9 extern Atom wmatom[WMLast], netatom[NetLast]; 1.10 extern Bool running, issel, *seltag; /* seltag is array of Bool */ 1.11 extern Client *clients, *sel, *stack; /* global client list and stack */ 1.12 @@ -157,8 +157,8 @@ 1.13 1.14 /* view.c */ 1.15 extern void detach(Client *c); /* detaches c from global client list */ 1.16 -extern void dofloat(Arg *arg); /* arranges all windows floating, arg is ignored */ 1.17 -extern void dotile(Arg *arg); /* arranges all windows, arg is ignored */ 1.18 +extern void dofloat(void); /* arranges all windows floating */ 1.19 +extern void dotile(void); /* arranges all windows tiled */ 1.20 extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */ 1.21 extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */ 1.22 extern Bool isvisible(Client *c); /* returns True if client is visible */