diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-03-05 10:31:37 +0000 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-03-05 10:31:37 +0000 |
commit | 2e38296edd5fbafbb93a42333af22ba9edd667bf (patch) | |
tree | 3897fb218f91f0ac8d48d5d60fb23e6d196fa5d9 /dwm.c | |
parent | 59aa02a0750ebc82dbcb30897bbf427391edffa0 (diff) | |
download | dwm-2e38296edd5fbafbb93a42333af22ba9edd667bf.tar.gz |
renamed maximise to monocle again.
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dwm.c b/dwm.c index 68a9d1d..9bad83c 100644 --- a/dwm.c +++ b/dwm.c @@ -44,7 +44,7 @@ * TODO: Idea: * I intend to not provide real Xinerama support, but instead having a Column * tilecols[] array which is used by tile(), and a Column maxcols[] arrays which is used by - * maximise(). Those arrays should be initialized in config.h. For simplicity + * monocle(). Those arrays should be initialized in config.h. For simplicity * reasons mwfact should be replaced with a more advanced method which * implements the same, but using the boundary between tilecols[0] and * tilecols[1] instead. Besides this, get rid of BARPOS and use instead the @@ -172,7 +172,7 @@ void killclient(const char *arg); void manage(Window w, XWindowAttributes *wa); void mappingnotify(XEvent *e); void maprequest(XEvent *e); -void maximise(void); +void monocle(void); void movemouse(Client *c); Client *nexttiled(Client *c); void propertynotify(XEvent *e); @@ -1086,7 +1086,7 @@ maprequest(XEvent *e) { } void -maximise(void) { +monocle(void) { Client *c; domwfact = dozoom = False; |