removed useless call

This commit is contained in:
Anselm R. Garbe 2006-08-24 12:04:41 +02:00
parent 18ec376aa9
commit 37faefb1aa
1 changed files with 1 additions and 3 deletions

4
draw.c
View File

@ -29,7 +29,6 @@ drawtext(const char *text, unsigned int colidx, Bool border)
int x, y, w, h;
static char buf[256];
unsigned int len, olen;
XGCValues gcv;
XPoint points[5];
XRectangle r = { dc.x, dc.y, dc.w, dc.h };
@ -83,8 +82,7 @@ drawtext(const char *text, unsigned int colidx, Bool border)
if(dc.font.set)
XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
else {
gcv.font = dc.font.xfont->fid;
XChangeGC(dpy, dc.gc, GCFont, &gcv);
XSetFont(dpy, dc.gc, dc.font.xfont->fid);
XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
}
}