diff options
Diffstat (limited to 'hw/xwin/winwindow.c')
-rw-r--r-- | hw/xwin/winwindow.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xwin/winwindow.c b/hw/xwin/winwindow.c index 30b672941..d0c360f34 100644 --- a/hw/xwin/winwindow.c +++ b/hw/xwin/winwindow.c @@ -451,17 +451,17 @@ winMapWindowRootless (WindowPtr pWin) void -winSetShapeRootless (WindowPtr pWin) +winSetShapeRootless (WindowPtr pWin, int kind) { ScreenPtr pScreen = pWin->drawable.pScreen; winScreenPriv(pScreen); #if CYGDEBUG - winTrace ("winSetShapeRootless (%p)\n", pWin); + winTrace ("winSetShapeRootless (%p, %i)\n", pWin, kind); #endif WIN_UNWRAP(SetShape); - (*pScreen->SetShape)(pWin); + (*pScreen->SetShape)(pWin, kind); WIN_WRAP(SetShape, winSetShapeRootless); winReshapeRootless (pWin); |