aboutsummarylogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe2009-09-08 13:18:05 +0100
committerAnselm R Garbe2009-09-08 13:18:05 +0100
commite108ddb80bfa3a9cf830d62bf4d8b4cc4348a66d (patch)
treebe964d42a9c1d87a444a5dc7ee9f8e112eb64295 /dwm.c
parenteb44bc32f1bd05b5b0bdeec3ad0884a9084c11e0 (diff)
downloadaur-e108ddb80bfa3a9cf830d62bf4d8b4cc4348a66d.tar.gz
renaming isdestroyed into destroyed
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dwm.c b/dwm.c
index 5ea74cbb27bd..413e79541b2b 100644
--- a/dwm.c
+++ b/dwm.c
@@ -218,7 +218,7 @@ static void togglefloating(const Arg *arg);
static void toggletag(const Arg *arg);
static void toggleview(const Arg *arg);
static void unfocus(Client *c);
-static void unmanage(Client *c, Bool isdestroyed);
+static void unmanage(Client *c, Bool destroyed);
static void unmapnotify(XEvent *e);
static void updategeom(void);
static void updatebarpos(Monitor *m);
@@ -1627,13 +1627,13 @@ unfocus(Client *c) {
}
void
-unmanage(Client *c, Bool isdestroyed) {
+unmanage(Client *c, Bool destroyed) {
XWindowChanges wc;
/* The server grab construct avoids race conditions. */
detach(c);
detachstack(c);
- if(!isdestroyed) {
+ if(!destroyed) {
wc.border_width = c->oldbw;
XGrabServer(dpy);
XSetErrorHandler(xerrordummy);