renaming isdestroyed into destroyed eb260b1a
Anselm R Garbe · 2009-09-08 13:18 1 file(s) · +3 −3
dwm.c +3 −3
218 218
static void toggletag(const Arg *arg);
219 219
static void toggleview(const Arg *arg);
220 220
static void unfocus(Client *c);
221 -
static void unmanage(Client *c, Bool isdestroyed);
221 +
static void unmanage(Client *c, Bool destroyed);
222 222
static void unmapnotify(XEvent *e);
223 223
static void updategeom(void);
224 224
static void updatebarpos(Monitor *m);
1627 1627
}
1628 1628
1629 1629
void
1630 -
unmanage(Client *c, Bool isdestroyed) {
1630 +
unmanage(Client *c, Bool destroyed) {
1631 1631
	XWindowChanges wc;
1632 1632
1633 1633
	/* The server grab construct avoids race conditions. */
1634 1634
	detach(c);
1635 1635
	detachstack(c);
1636 -
	if(!isdestroyed) {
1636 +
	if(!destroyed) {
1637 1637
		wc.border_width = c->oldbw;
1638 1638
		XGrabServer(dpy);
1639 1639
		XSetErrorHandler(xerrordummy);