about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-11 10:00:56 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-11 10:00:56 +0200
commitd2d394eccf2d23eb264a321fe187bb2084beb4b9 (patch)
tree071e91346653a8d6973e0e8398d9922157fd5ad2 /client.c
parent438beeabde5e56f8d85e0dd143721e9372e3eab4 (diff)
downloaddwm-d2d394eccf2d23eb264a321fe187bb2084beb4b9.tar.gz
small change to comments, renamed two set* functions in client.c into update*
Diffstat (limited to 'client.c')
-rw-r--r--client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/client.c b/client.c
index b6caa93..a794f44 100644
--- a/client.c
+++ b/client.c
@@ -223,7 +223,7 @@ manage(Window w, XWindowAttributes *wa)
 	c->th = bh;
 
 	c->border = 0;
-	setsize(c);
+	updatesize(c);
 
 	if(c->x + c->w + 2 > sw)
 		c->x = sw - c->w - 2;
@@ -260,7 +260,7 @@ manage(Window w, XWindowAttributes *wa)
 	c->snext = stack;
 	stack = clients = c;
 
-	settitle(c);
+	updatetitle(c);
 	ban(c);
 	XMapWindow(dpy, c->win);
 	XMapWindow(dpy, c->twin);
@@ -309,7 +309,7 @@ resize(Client *c, Bool sizehints, Corner sticky)
 }
 
 void
-setsize(Client *c)
+updatesize(Client *c)
 {
 	long msize;
 	XSizeHints size;
@@ -348,7 +348,7 @@ setsize(Client *c)
 }
 
 void
-settitle(Client *c)
+updatetitle(Client *c)
 {
 	char **list = NULL;
 	int n;