summaryrefslogtreecommitdiff
path: root/vcl/source/outdev/polyline.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-04-23 07:22:08 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2014-04-23 07:23:43 +1000
commit8708d30369685ba84a0b9c335fcaccd4814fa842 (patch)
tree4443cc88e8f2bbae2b20b351470856508311fa4e /vcl/source/outdev/polyline.cxx
parent665bc42d7504c3896a485c8bab17b8eff7d119df (diff)
Rename OutputDevice::ImplGetGraphics to GetGraphics
Change-Id: I4086978f2292538c458802a7fb56c0d3826f2def
Diffstat (limited to 'vcl/source/outdev/polyline.cxx')
-rw-r--r--vcl/source/outdev/polyline.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/outdev/polyline.cxx b/vcl/source/outdev/polyline.cxx
index 3d06e27d0472..fe3e9cd89e30 100644
--- a/vcl/source/outdev/polyline.cxx
+++ b/vcl/source/outdev/polyline.cxx
@@ -41,7 +41,7 @@ void OutputDevice::DrawPolyLine( const Polygon& rPoly )
// we need a graphics
if ( !mpGraphics )
- if ( !ImplGetGraphics() )
+ if ( !AcquireGraphics() )
return;
if ( mbInitClipRegion )
@@ -150,7 +150,7 @@ void OutputDevice::DrawPolyLine(
// we need a graphics
if( !mpGraphics )
- if( !ImplGetGraphics() )
+ if( !AcquireGraphics() )
return;
if( mbInitClipRegion )
@@ -239,7 +239,7 @@ void OutputDevice::DrawPolyLineWithLineInfo(const Polygon& rPoly, const LineInfo
Polygon aPoly = ImplLogicToDevicePixel( rPoly );
// we need a graphics
- if ( !mpGraphics && !ImplGetGraphics() )
+ if ( !mpGraphics && !AcquireGraphics() )
return;
if ( mbInitClipRegion )
@@ -330,7 +330,7 @@ bool OutputDevice::TryDrawPolyLineDirect(
// we need a graphics
if( !mpGraphics )
- if( !ImplGetGraphics() )
+ if( !AcquireGraphics() )
return false;
if( mbInitClipRegion )