diff options
Diffstat (limited to 'vcl/opengl')
-rw-r--r-- | vcl/opengl/gdiimpl.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx index 359c4da67957..7d0be09a1b12 100644 --- a/vcl/opengl/gdiimpl.cxx +++ b/vcl/opengl/gdiimpl.cxx @@ -924,8 +924,8 @@ void OpenGLSalGraphicsImpl::DrawRegionBand( const RegionBand& rRegion ) for(tools::Rectangle & rRect : aRects) { - rRect.Bottom() += 1; - rRect.Right() += 1; + rRect.AdjustBottom(1 ); + rRect.AdjustRight(1 ); ADD_VERTICE( rRect.TopLeft() ); ADD_VERTICE( rRect.TopRight() ); ADD_VERTICE( rRect.BottomLeft() ); @@ -1974,10 +1974,10 @@ bool OpenGLSalGraphicsImpl::drawGradient(const tools::PolyPolygon& rPolyPoly, return false; } - aBoundRect.Left()--; - aBoundRect.Top()--; - aBoundRect.Right()++; - aBoundRect.Bottom()++; + aBoundRect.AdjustLeft( -1 ); + aBoundRect.AdjustTop( -1 ); + aBoundRect.AdjustRight( 1 ); + aBoundRect.AdjustBottom( 1 ); PreDraw( XOROption::IMPLEMENT_XOR ); |