diff options
author | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-14 22:54:09 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-14 22:54:09 +0200 |
commit | c0705eeb65733e8c5091e47d5bdc701a0779a949 (patch) | |
tree | 0a33e58c24419ff6e12f5401e3bfd65c1e90dfa3 /draw.c | |
parent | 29355bd38284ed9aec8d3ffabde61db73947c9f9 (diff) | |
download | dwm-c0705eeb65733e8c5091e47d5bdc701a0779a949.tar.gz |
sanitized names
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/draw.c b/draw.c index 5bb6fc2..6a7fea9 100644 --- a/draw.c +++ b/draw.c @@ -11,7 +11,7 @@ #include "dwm.h" void -draw_bar() +drawstatus() { int i; @@ -44,11 +44,11 @@ draw_bar() } 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 @@ drawtext(const char *text, Bool invert, Bool border) } unsigned long -initcolor(const char *colstr) +getcolor(const char *colstr) { XColor color; Colormap cmap = DefaultColormap(dpy, screen); @@ -172,7 +172,7 @@ textw(char *text) } void -initfont(const char *fontstr) +setfont(const char *fontstr) { char **missing, *def; int i, n; |