summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-04-25 03:31:39 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2014-04-25 03:31:39 +1000
commitb3b0331711a1cab740d6c2220ef766f611a117b8 (patch)
treec550c5fd100cf8f402b8bcaf35da8f8e42103c66 /vcl
parentc97159359ab6324798e16414d72d540e6c1112d5 (diff)
VCL: Rename OutputDevice::ImplSelectClipRegion to SelectClipRegion
Change-Id: I8c683588d8bdb6dd287e60fc1e249bd5633a4ee2
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/outdev/clipping.cxx6
-rw-r--r--vcl/source/outdev/outdev.cxx2
-rw-r--r--vcl/source/window/window.cxx6
-rw-r--r--vcl/source/window/window2.cxx4
4 files changed, 9 insertions, 9 deletions
diff --git a/vcl/source/outdev/clipping.cxx b/vcl/source/outdev/clipping.cxx
index f95b45cdc27b..a7d2ea761e84 100644
--- a/vcl/source/outdev/clipping.cxx
+++ b/vcl/source/outdev/clipping.cxx
@@ -65,7 +65,7 @@ void OutputDevice::InitClipRegion()
else
{
mbOutputClipped = false;
- ImplSelectClipRegion( aRegion );
+ SelectClipRegion( aRegion );
}
}
@@ -89,7 +89,7 @@ void OutputDevice::ClipToPaintRegion(Rectangle& /*rDstRect*/)
{
}
-bool OutputDevice::ImplSelectClipRegion( const Region& rRegion, SalGraphics* pGraphics )
+bool OutputDevice::SelectClipRegion( const Region& rRegion, SalGraphics* pGraphics )
{
DBG_TESTSOLARMUTEX();
@@ -102,7 +102,7 @@ bool OutputDevice::ImplSelectClipRegion( const Region& rRegion, SalGraphics* pGr
}
bool bClipRegion = pGraphics->SetClipRegion( rRegion, this );
- OSL_ENSURE( bClipRegion, "OutputDevice::ImplSelectClipRegion() - can't create region" );
+ OSL_ENSURE( bClipRegion, "OutputDevice::SelectClipRegion() - can't create region" );
return bClipRegion;
}
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx
index ea189578025e..cc133327d585 100644
--- a/vcl/source/outdev/outdev.cxx
+++ b/vcl/source/outdev/outdev.cxx
@@ -761,7 +761,7 @@ void OutputDevice::ImplDrawFrameDev( const Point& rPt, const Point& rDevPt, cons
if ( rRegion.IsNull() )
mpGraphics->ResetClipRegion();
else
- ImplSelectClipRegion( rRegion );
+ SelectClipRegion( rRegion );
SalTwoRect aPosAry;
aPosAry.mnSrcX = rDevPt.X();
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 );
}
}