From d2d394eccf2d23eb264a321fe187bb2084beb4b9 Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Mon, 11 Sep 2006 10:00:56 +0200 Subject: small change to comments, renamed two set* functions in client.c into update* --- client.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'client.c') 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; -- cgit v1.2.3-54-g00ecf