summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgbert Eich <eich@suse.de>2006-03-31 15:11:51 +0000
committerEgbert Eich <eich@suse.de>2006-03-31 15:11:51 +0000
commitb074ce22470ba0a51eda2af7100d09a260a1e8bb (patch)
tree8a952469d9a5c835360a8dc33e1f2486fb6454b0
parent710bb2e6c8b2874406e48fa8ad24539290c98d41 (diff)
fixed typo.
-rw-r--r--ChangeLog5
-rw-r--r--mi/miwideline.c6
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 <eich_at_freedesktop_dot_org>
+
+ * mi/miwideline.c: (miFillRectPolyHelper), (miLineArc):
+ fixed typo.
+
2006-03-31 Daniel Stone <daniel@freedesktop.org>
* 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);
}
}