fixed typo.
This commit is contained in:
parent
710bb2e6c8
commit
b074ce2247
|
@ -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>
|
2006-03-31 Daniel Stone <daniel@freedesktop.org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -122,7 +122,7 @@ miFillPolyHelper (pDrawable, pGC, pixel, spanData, y, overall_height,
|
||||||
if (pixel != oldPixel)
|
if (pixel != oldPixel)
|
||||||
{
|
{
|
||||||
XID tmpPixel = (XID)pixel;
|
XID tmpPixel = (XID)pixel;
|
||||||
DoChangeGC (pGC, GCForeground, tmpPixel, FALSE);
|
DoChangeGC (pGC, GCForeground, &tmpPixel, FALSE);
|
||||||
ValidateGC (pDrawable, pGC);
|
ValidateGC (pDrawable, pGC);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -221,7 +221,7 @@ miFillRectPolyHelper (
|
||||||
if (pixel != oldPixel)
|
if (pixel != oldPixel)
|
||||||
{
|
{
|
||||||
XID tmpPixel = (XID)pixel;
|
XID tmpPixel = (XID)pixel;
|
||||||
DoChangeGC (pGC, GCForeground, tmpPixel, FALSE);
|
DoChangeGC (pGC, GCForeground, &tmpPixel, FALSE);
|
||||||
ValidateGC (pDrawable, pGC);
|
ValidateGC (pDrawable, pGC);
|
||||||
}
|
}
|
||||||
(*pGC->ops->PolyFillRect) (pDrawable, pGC, 1, &rect);
|
(*pGC->ops->PolyFillRect) (pDrawable, pGC, 1, &rect);
|
||||||
|
@ -1073,7 +1073,7 @@ miLineArc (
|
||||||
if (pixel != oldPixel)
|
if (pixel != oldPixel)
|
||||||
{
|
{
|
||||||
XID tmpPixel = (XID)pixel;
|
XID tmpPixel = (XID)pixel;
|
||||||
DoChangeGC(pGC, GCForeground, tmpPixel, FALSE);
|
DoChangeGC(pGC, GCForeground, &tmpPixel, FALSE);
|
||||||
ValidateGC (pDraw, pGC);
|
ValidateGC (pDraw, pGC);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue