diff options
author | Anselm R.Garbe | 2006-08-10 10:28:58 +0200 |
---|---|---|
committer | Anselm R.Garbe | 2006-08-10 10:28:58 +0200 |
commit | 4318bf2905a8da290ec83cb67f26bd06ba2e4dc9 (patch) | |
tree | 0595003df69ca5420bc3c9a7a86b6df1c66325bf /dmenu.h | |
parent | 25f71b382953630a48e321737498f9c561e66433 (diff) |
removed unnecessary border color
Diffstat (limited to 'dmenu.h')
-rw-r--r-- | dmenu.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -24,7 +24,6 @@ struct DC { /* draw context */ int x, y, w, h; unsigned long bg; unsigned long fg; - unsigned long border; Drawable drawable; Fnt font; GC gc; @@ -35,7 +34,7 @@ extern Display *dpy; extern DC dc; /* draw.c */ -extern void drawtext(const char *text, Bool invert, Bool border); +extern void drawtext(const char *text, Bool invert); extern unsigned long getcolor(const char *colstr); extern void setfont(const char *fontstr); extern unsigned int textw(const char *text); |