summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/vcl/outdev.hxx2
-rw-r--r--vcl/source/outdev/clipping.cxx8
-rw-r--r--vcl/source/outdev/outdev.cxx2
3 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index b39cb37510cd..a6e70340fd74 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -469,7 +469,7 @@ protected:
virtual Region GetActiveClipRegion() const;
private:
- SAL_DLLPRIVATE void ImplSetClipRegion( const Region* pRegion );
+ SAL_DLLPRIVATE void SetDeviceClipRegion( const Region* pRegion );
SAL_DLLPRIVATE bool ImplSelectClipRegion( const Region&, SalGraphics* pGraphics = NULL );
///@}
diff --git a/vcl/source/outdev/clipping.cxx b/vcl/source/outdev/clipping.cxx
index 299c272e3262..f95b45cdc27b 100644
--- a/vcl/source/outdev/clipping.cxx
+++ b/vcl/source/outdev/clipping.cxx
@@ -106,7 +106,7 @@ bool OutputDevice::ImplSelectClipRegion( const Region& rRegion, SalGraphics* pGr
return bClipRegion;
}
-void OutputDevice::ImplSetClipRegion( const Region* pRegion )
+void OutputDevice::SetDeviceClipRegion( const Region* pRegion )
{
DBG_TESTSOLARMUTEX();
@@ -133,7 +133,7 @@ void OutputDevice::SetClipRegion()
if ( mpMetaFile )
mpMetaFile->AddAction( new MetaClipRegionAction( Region(), false ) );
- ImplSetClipRegion( NULL );
+ SetDeviceClipRegion( NULL );
if( mpAlphaVDev )
mpAlphaVDev->SetClipRegion();
@@ -147,12 +147,12 @@ void OutputDevice::SetClipRegion( const Region& rRegion )
if ( rRegion.IsNull() )
{
- ImplSetClipRegion( NULL );
+ SetDeviceClipRegion( NULL );
}
else
{
Region aRegion = LogicToPixel( rRegion );
- ImplSetClipRegion( &aRegion );
+ SetDeviceClipRegion( &aRegion );
}
if( mpAlphaVDev )
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx
index 135ab33e48a7..ea189578025e 100644
--- a/vcl/source/outdev/outdev.cxx
+++ b/vcl/source/outdev/outdev.cxx
@@ -1189,7 +1189,7 @@ void OutputDevice::Pop()
mbMap = pData->mbMapActive;
}
if ( pData->mnFlags & PUSH_CLIPREGION )
- ImplSetClipRegion( pData->mpClipRegion );
+ SetDeviceClipRegion( pData->mpClipRegion );
if ( pData->mnFlags & PUSH_REFPOINT )
{
if ( pData->mpRefPoint )