diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-25 03:31:39 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-25 03:31:39 +1000 |
commit | b3b0331711a1cab740d6c2220ef766f611a117b8 (patch) | |
tree | c550c5fd100cf8f402b8bcaf35da8f8e42103c66 /vcl/source/window | |
parent | c97159359ab6324798e16414d72d540e6c1112d5 (diff) |
VCL: Rename OutputDevice::ImplSelectClipRegion to SelectClipRegion
Change-Id: I8c683588d8bdb6dd287e60fc1e249bd5633a4ee2
Diffstat (limited to 'vcl/source/window')
-rw-r--r-- | vcl/source/window/window.cxx | 6 | ||||
-rw-r--r-- | vcl/source/window/window2.cxx | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index a4fe2037f7a0..f8f4bdaa214e 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -432,7 +432,7 @@ void Window::InitClipRegion() else { mbOutputClipped = false; - ImplSelectClipRegion( aRegion ); + SelectClipRegion( aRegion ); } mbClipRegionSet = true; @@ -3150,7 +3150,7 @@ void Window::ImplScroll( const Rectangle& rRect, pOutDev->ReMirror( aRegion ); } - pOutDev->ImplSelectClipRegion( aRegion, pGraphics ); + pOutDev->SelectClipRegion( aRegion, pGraphics ); pGraphics->CopyArea( rRect.Left()+nHorzScroll, rRect.Top()+nVertScroll, rRect.Left(), rRect.Top(), rRect.GetWidth(), rRect.GetHeight(), @@ -3578,7 +3578,7 @@ void Window::ImplPosSizeWindow( long nX, long nY, { OutputDevice *pOutDev = GetOutDev(); - const bool bSelectClipRegion = pOutDev->ImplSelectClipRegion( aRegion, pGraphics ); + const bool bSelectClipRegion = pOutDev->SelectClipRegion( aRegion, pGraphics ); if ( bSelectClipRegion ) { pGraphics->CopyArea( mnOutOffX, mnOutOffY, diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx index 3795f5cacfed..8c9b44fb6a5d 100644 --- a/vcl/source/window/window2.cxx +++ b/vcl/source/window/window2.cxx @@ -503,7 +503,7 @@ void Window::InvertTracking( const Rectangle& rRect, sal_uInt16 nFlags ) Region aRegion( Rectangle( aPoint, Size( mnOutWidth, mnOutHeight ) ) ); ImplClipBoundaries( aRegion, false, false ); - pOutDev->ImplSelectClipRegion( aRegion, pGraphics ); + pOutDev->SelectClipRegion( aRegion, pGraphics ); } } @@ -567,7 +567,7 @@ void Window::InvertTracking( const Polygon& rPoly, sal_uInt16 nFlags ) Region aRegion( Rectangle( aPoint, Size( mnOutWidth, mnOutHeight ) ) ); ImplClipBoundaries( aRegion, false, false ); - pOutDev->ImplSelectClipRegion( aRegion, pGraphics ); + pOutDev->SelectClipRegion( aRegion, pGraphics ); } } |