diff options
Diffstat (limited to 'mi/miexpose.c')
-rw-r--r-- | mi/miexpose.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mi/miexpose.c b/mi/miexpose.c index b4d489a7d..03ce896aa 100644 --- a/mi/miexpose.c +++ b/mi/miexpose.c @@ -683,17 +683,18 @@ miPaintWindow(WindowPtr pWin, RegionPtr prgn, int what) void miClearDrawable(DrawablePtr pDraw, GCPtr pGC) { - XID fg = pGC->fgPixel; - XID bg = pGC->bgPixel; + ChangeGCVal fg, bg; xRectangle rect; + fg.val = pGC->fgPixel; + bg.val = pGC->bgPixel; rect.x = 0; rect.y = 0; rect.width = pDraw->width; rect.height = pDraw->height; - dixChangeGC(NullClient, pGC, GCForeground, &bg, NULL); + dixChangeGC(NullClient, pGC, GCForeground, NULL, &bg); ValidateGC(pDraw, pGC); (*pGC->ops->PolyFillRect)(pDraw, pGC, 1, &rect); - dixChangeGC(NullClient, pGC, GCForeground, &fg, NULL); + dixChangeGC(NullClient, pGC, GCForeground, NULL, &fg); ValidateGC(pDraw, pGC); } |