Mercurial > 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 wrap: on
line diff
--- a/client.c Mon Sep 11 08:58:58 2006 +0200 +++ b/client.c Mon Sep 11 10:00:56 2006 +0200 @@ -223,7 +223,7 @@ 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 @@ c->snext = stack; stack = clients = c; - settitle(c); + updatetitle(c); ban(c); XMapWindow(dpy, c->win); XMapWindow(dpy, c->twin); @@ -309,7 +309,7 @@ } void -setsize(Client *c) +updatesize(Client *c) { long msize; XSizeHints size; @@ -348,7 +348,7 @@ } void -settitle(Client *c) +updatetitle(Client *c) { char **list = NULL; int n;