diff options
author | Jamey Sharp <jamey@minilop.net> | 2010-06-05 20:55:29 -0700 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2010-06-05 22:07:21 -0700 |
commit | a0fe6987b55b5326157b50e169b8d6b9ae26a1ae (patch) | |
tree | 30bd5b4a9fef3d1435059bb2a32d4e8d9916195c /hw/xwin/winmultiwindowshape.c | |
parent | 424b593c7872a703d3d0c942b7e8acc0770eb023 (diff) |
Clean up after removal of screen parameters from region macros.
Signed-off-by: Jamey Sharp <jamey@minilop.net>
Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw/xwin/winmultiwindowshape.c')
-rw-r--r-- | hw/xwin/winmultiwindowshape.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/hw/xwin/winmultiwindowshape.c b/hw/xwin/winmultiwindowshape.c index 9b4910b9c..6b7042e09 100644 --- a/hw/xwin/winmultiwindowshape.c +++ b/hw/xwin/winmultiwindowshape.c @@ -119,10 +119,7 @@ winReshapeMultiWindow (WindowPtr pWin) RegionNull(&rrNewShape); RegionCopy(&rrNewShape, wBoundingShape(pWin)); - RegionTranslate( - &rrNewShape, - pWin->borderWidth, - pWin->borderWidth); + RegionTranslate(&rrNewShape, pWin->borderWidth, pWin->borderWidth); nRects = RegionNumRects(&rrNewShape); pShape = RegionRects(&rrNewShape); |