fixed typo.

This commit is contained in:
Egbert Eich 2006-03-31 15:11:51 +00:00
parent 710bb2e6c8
commit b074ce2247
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-03-31 Egbert Eich <eich_at_freedesktop_dot_org>
* mi/miwideline.c: (miFillRectPolyHelper), (miLineArc):
fixed typo.
2006-03-31 Daniel Stone <daniel@freedesktop.org>
* configure.ac:

View File

@ -122,7 +122,7 @@ miFillPolyHelper (pDrawable, pGC, pixel, spanData, y, overall_height,
if (pixel != oldPixel)
{
XID tmpPixel = (XID)pixel;
DoChangeGC (pGC, GCForeground, tmpPixel, FALSE);
DoChangeGC (pGC, GCForeground, &tmpPixel, FALSE);
ValidateGC (pDrawable, pGC);
}
}
@ -221,7 +221,7 @@ miFillRectPolyHelper (
if (pixel != oldPixel)
{
XID tmpPixel = (XID)pixel;
DoChangeGC (pGC, GCForeground, tmpPixel, FALSE);
DoChangeGC (pGC, GCForeground, &tmpPixel, FALSE);
ValidateGC (pDrawable, pGC);
}
(*pGC->ops->PolyFillRect) (pDrawable, pGC, 1, &rect);
@ -1073,7 +1073,7 @@ miLineArc (
if (pixel != oldPixel)
{
XID tmpPixel = (XID)pixel;
DoChangeGC(pGC, GCForeground, tmpPixel, FALSE);
DoChangeGC(pGC, GCForeground, &tmpPixel, FALSE);
ValidateGC (pDraw, pGC);
}
}