diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-23 07:22:08 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-23 07:23:43 +1000 |
commit | 8708d30369685ba84a0b9c335fcaccd4814fa842 (patch) | |
tree | 4443cc88e8f2bbae2b20b351470856508311fa4e /vcl/source/outdev/rect.cxx | |
parent | 665bc42d7504c3896a485c8bab17b8eff7d119df (diff) |
Rename OutputDevice::ImplGetGraphics to GetGraphics
Change-Id: I4086978f2292538c458802a7fb56c0d3826f2def
Diffstat (limited to 'vcl/source/outdev/rect.cxx')
-rw-r--r-- | vcl/source/outdev/rect.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/rect.cxx b/vcl/source/outdev/rect.cxx index 34abf0a2e2ca..d47119b52850 100644 --- a/vcl/source/outdev/rect.cxx +++ b/vcl/source/outdev/rect.cxx @@ -42,7 +42,7 @@ void OutputDevice::DrawRect( const Rectangle& rRect ) if ( !mpGraphics ) { - if ( !ImplGetGraphics() ) + if ( !AcquireGraphics() ) return; } @@ -83,7 +83,7 @@ void OutputDevice::DrawRect( const Rectangle& rRect, // we need a graphics if ( !mpGraphics ) { - if ( !ImplGetGraphics() ) + if ( !AcquireGraphics() ) return; } |