draw.c
changeset 74 5370ef170cc9
parent 73 c2ddb9dbbd10
child 75 f08271b7cb20
--- 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;