diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-25 03:28:04 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-25 03:28:04 +1000 |
commit | c97159359ab6324798e16414d72d540e6c1112d5 (patch) | |
tree | 6b19de05a95709bbeee2a7128e86331a72f1d650 | |
parent | 66b2880ad51b69188ea5c2e56a682ed320c53d1e (diff) |
VCL Change OutputDevice::ImplSetClipRegion to SetDeviceClipRegion
Change-Id: Ia2db9d640af6bdc35f3e38b5b85355721d5b8331
-rw-r--r-- | include/vcl/outdev.hxx | 2 | ||||
-rw-r--r-- | vcl/source/outdev/clipping.cxx | 8 | ||||
-rw-r--r-- | vcl/source/outdev/outdev.cxx | 2 |
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 ) |