summaryrefslogtreecommitdiff
path: root/vcl/source/window/window2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/window2.cxx')
-rw-r--r--vcl/source/window/window2.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx
index 935aee853f02..b7317c0b8c88 100644
--- a/vcl/source/window/window2.cxx
+++ b/vcl/source/window/window2.cxx
@@ -233,7 +233,7 @@ void Window::HideTracking()
void Window::InvertTracking( const Rectangle& rRect, sal_uInt16 nFlags )
{
- ClipManager *clipMgr = ClipManager::GetInstance();
+ ClipManager *pClipMgr = ClipManager::GetInstance();
OutputDevice *pOutDev = GetOutDev();
Rectangle aRect( pOutDev->ImplLogicToDevicePixel( rRect ) );
@@ -273,7 +273,7 @@ void Window::InvertTracking( const Rectangle& rRect, sal_uInt16 nFlags )
Point aPoint( mnOutOffX, mnOutOffY );
Region aRegion( Rectangle( aPoint,
Size( mnOutWidth, mnOutHeight ) ) );
- clipMgr->ClipBoundaries( this, aRegion, false, false );
+ pClipMgr->ClipBoundaries( this, aRegion, false, false );
pOutDev->SelectClipRegion( aRegion, pGraphics );
}
}
@@ -297,7 +297,7 @@ void Window::InvertTracking( const Rectangle& rRect, sal_uInt16 nFlags )
void Window::InvertTracking( const Polygon& rPoly, sal_uInt16 nFlags )
{
- ClipManager *clipMgr = ClipManager::GetInstance();
+ ClipManager *pClipMgr = ClipManager::GetInstance();
sal_uInt16 nPoints = rPoly.GetSize();
@@ -339,7 +339,7 @@ void Window::InvertTracking( const Polygon& rPoly, sal_uInt16 nFlags )
Point aPoint( mnOutOffX, mnOutOffY );
Region aRegion( Rectangle( aPoint,
Size( mnOutWidth, mnOutHeight ) ) );
- clipMgr->ClipBoundaries( this, aRegion, false, false );
+ pClipMgr->ClipBoundaries( this, aRegion, false, false );
pOutDev->SelectClipRegion( aRegion, pGraphics );
}
}