diff options
| author | Anselm R. Garbe <arg@suckless.org> | 2007-01-04 14:17:25 +0100 | 
|---|---|---|
| committer | Anselm R. Garbe <arg@suckless.org> | 2007-01-04 14:17:25 +0100 | 
| commit | 184471b4bbd1736794a76d2b703659de0339322b (patch) | |
| tree | dcf73c074aeb9c3a06abdaaf93e3a15d27e02d05 /draw.c | |
| parent | 21898c6049ea66dae34a660598684a7babec1097 (diff) | |
| download | dwm-184471b4bbd1736794a76d2b703659de0339322b.tar.gz dwm-184471b4bbd1736794a76d2b703659de0339322b.tar.bz2 dwm-184471b4bbd1736794a76d2b703659de0339322b.zip | |
renamed drawtitle into drawclient
Diffstat (limited to 'draw.c')
| -rw-r--r-- | draw.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -102,7 +102,7 @@ drawall(void) {  	Client *c;  	for(c = clients; c; c = getnext(c->next)) -		drawtitle(c); +		drawclient(c);  	drawstatus();  } @@ -138,7 +138,7 @@ drawstatus(void) {  }  void -drawtitle(Client *c) { +drawclient(Client *c) {  	if(c == sel && issel) {  		drawstatus();  		XUnmapWindow(dpy, c->twin); | 
