From b074ce22470ba0a51eda2af7100d09a260a1e8bb Mon Sep 17 00:00:00 2001 From: Egbert Eich Date: Fri, 31 Mar 2006 15:11:51 +0000 Subject: [PATCH] fixed typo. --- ChangeLog | 5 +++++ mi/miwideline.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 80b7b70d9..82f0d07b1 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 39b147d99..0630580fe 100644 --- a/mi/miwideline.c +++ b/mi/miwideline.c @@ -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); } }