diff options
Diffstat (limited to 'mi/miexpose.c')
-rw-r--r-- | mi/miexpose.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mi/miexpose.c b/mi/miexpose.c index 2072e6a0a..b4d489a7d 100644 --- a/mi/miexpose.c +++ b/mi/miexpose.c @@ -691,9 +691,9 @@ miClearDrawable(DrawablePtr pDraw, GCPtr pGC) rect.y = 0; rect.width = pDraw->width; rect.height = pDraw->height; - DoChangeGC(pGC, GCForeground, &bg, 0); + dixChangeGC(NullClient, pGC, GCForeground, &bg, NULL); ValidateGC(pDraw, pGC); (*pGC->ops->PolyFillRect)(pDraw, pGC, 1, &rect); - DoChangeGC(pGC, GCForeground, &fg, 0); + dixChangeGC(NullClient, pGC, GCForeground, &fg, NULL); ValidateGC(pDraw, pGC); } |