dwm-meillo

diff client.c @ 454:ffb462fb7903

small change to comments, renamed two set* functions in client.c into update*
author Anselm R. Garbe <arg@10kloc.org>
date Mon, 11 Sep 2006 10:00:56 +0200
parents 026aba558fdf
children 9d23330a5268
line diff
     1.1 --- a/client.c	Mon Sep 11 08:58:58 2006 +0200
     1.2 +++ b/client.c	Mon Sep 11 10:00:56 2006 +0200
     1.3 @@ -223,7 +223,7 @@
     1.4  	c->th = bh;
     1.5  
     1.6  	c->border = 0;
     1.7 -	setsize(c);
     1.8 +	updatesize(c);
     1.9  
    1.10  	if(c->x + c->w + 2 > sw)
    1.11  		c->x = sw - c->w - 2;
    1.12 @@ -260,7 +260,7 @@
    1.13  	c->snext = stack;
    1.14  	stack = clients = c;
    1.15  
    1.16 -	settitle(c);
    1.17 +	updatetitle(c);
    1.18  	ban(c);
    1.19  	XMapWindow(dpy, c->win);
    1.20  	XMapWindow(dpy, c->twin);
    1.21 @@ -309,7 +309,7 @@
    1.22  }
    1.23  
    1.24  void
    1.25 -setsize(Client *c)
    1.26 +updatesize(Client *c)
    1.27  {
    1.28  	long msize;
    1.29  	XSizeHints size;
    1.30 @@ -348,7 +348,7 @@
    1.31  }
    1.32  
    1.33  void
    1.34 -settitle(Client *c)
    1.35 +updatetitle(Client *c)
    1.36  {
    1.37  	char **list = NULL;
    1.38  	int n;