dwm-meillo

diff client.c @ 639:226ef912c093

renamed updatesize into updatesizehints (thx to Sander for this hint)
author arg@mig29
date Mon, 01 Jan 2007 19:10:31 +0100
parents d6fbb669fef2
children e90bf387bf6f
line diff
     1.1 --- a/client.c	Wed Dec 20 12:07:05 2006 +0100
     1.2 +++ b/client.c	Mon Jan 01 19:10:31 2007 +0100
     1.3 @@ -156,7 +156,7 @@
     1.4  	c->w = c->tw = wa->width;
     1.5  	c->h = wa->height;
     1.6  	c->th = bh;
     1.7 -	updatesize(c);
     1.8 +	updatesizehints(c);
     1.9  	if(c->x + c->w + 2 * BORDERPX > sw)
    1.10  		c->x = sw - c->w - 2 * BORDERPX;
    1.11  	if(c->x < sx)
    1.12 @@ -256,7 +256,7 @@
    1.13  }
    1.14  
    1.15  void
    1.16 -updatesize(Client *c) {
    1.17 +updatesizehints(Client *c) {
    1.18  	long msize;
    1.19  	XSizeHints size;
    1.20