diff options
| author | Anselm R. Garbe <arg@suckless.org> | 2007-02-19 17:18:24 +0100 | 
|---|---|---|
| committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-19 17:18:24 +0100 | 
| commit | 5a03daf47f3383250652c15f38f976f6157b4641 (patch) | |
| tree | 3fa10743e82f60e66a0407056a4793101e917a74 /client.c | |
| parent | 6d5f67a0922d40d52290c12f9c0d937f4121406e (diff) | |
renamed Client->versatile and Rule->versatile into Client->isversatile resp. Rule->isversatile
Diffstat (limited to 'client.c')
| -rw-r--r-- | client.c | 8 | 
1 files changed, 4 insertions, 4 deletions
@@ -253,8 +253,8 @@ manage(Window w, XWindowAttributes *wa) {  	updatetitle(c);  	for(t = clients; t && t->win != trans; t = t->next);  	settags(c, t); -	if(!c->versatile) -		c->versatile = (t != NULL) || c->isfixed; +	if(!c->isversatile) +		c->isversatile = (t != NULL) || c->isfixed;  	attach(c);  	attachstack(c);  	c->isbanned = True; @@ -268,7 +268,7 @@ manage(Window w, XWindowAttributes *wa) {  Client *  nexttiled(Client *c) { -	for(; c && (c->versatile || !isvisible(c)); c = c->next); +	for(; c && (c->isversatile || !isvisible(c)); c = c->next);  	return c;  } @@ -440,7 +440,7 @@ zoom(Arg *arg) {  	if(!sel)  		return; -	if(sel->versatile || (lt->arrange == versatile)) { +	if(sel->isversatile || (lt->arrange == versatile)) {  		togglemax(sel);  		return;  	}  | 
