Mercurial > aewl
diff draw.c @ 74:5370ef170cc9
sanitized names
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Fri, 14 Jul 2006 22:54:09 +0200 |
parents | c2ddb9dbbd10 |
children | f08271b7cb20 |
line wrap: on
line diff
--- a/draw.c Fri Jul 14 22:33:38 2006 +0200 +++ b/draw.c Fri Jul 14 22:54:09 2006 +0200 @@ -11,7 +11,7 @@ #include "dwm.h" void -draw_bar() +drawstatus() { int i; @@ -44,11 +44,11 @@ } void -draw_client(Client *c) +drawtitle(Client *c) { int i; if(c == sel) { - draw_bar(); + drawstatus(); XUnmapWindow(dpy, c->title); XSetWindowBorder(dpy, c->win, dc.fg); return; @@ -145,7 +145,7 @@ } unsigned long -initcolor(const char *colstr) +getcolor(const char *colstr) { XColor color; Colormap cmap = DefaultColormap(dpy, screen); @@ -172,7 +172,7 @@ } void -initfont(const char *fontstr) +setfont(const char *fontstr) { char **missing, *def; int i, n;