diff --git a/ChangeLog b/ChangeLog index 80b7b70..82f0d07 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-03-31 Egbert Eich + + * mi/miwideline.c: (miFillRectPolyHelper), (miLineArc): + fixed typo. + 2006-03-31 Daniel Stone * configure.ac: diff --git a/mi/miwideline.c b/mi/miwideline.c index 39b147d..0630580 100644 --- a/mi/miwideline.c +++ b/mi/miwideline.c @@ -122,7 +122,7 @@ miFillPolyHelper (pDrawable, pGC, pixel, 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); } }