renamed drawtitle into drawclient

This commit is contained in:
Anselm R. Garbe
2007-01-04 14:17:25 +01:00
parent 21898c6049
commit 184471b4bb
4 changed files with 7 additions and 7 deletions

2
dwm.h
View File

@ -124,7 +124,7 @@ extern void unmanage(Client *c); /* destroy c */
/* draw.c */
extern void drawall(void); /* draw all visible client titles and the bar */
extern void drawstatus(void); /* draw the bar */
extern void drawtitle(Client *c); /* draw title of c */
extern void drawclient(Client *c); /* draw title of c */
extern unsigned long getcolor(const char *colstr); /* return color of colstr */
extern void setfont(const char *fontstr); /* set the font for DC */
extern unsigned int textw(const char *text); /* return the width of text in px*/