diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-27 19:38:55 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-27 20:53:30 +1000 |
commit | bb5d1006bd97dca3311d2960aec11595feae3b09 (patch) | |
tree | 19e83fca9c0ac93ab7c631221db5f0625916c9ab /vcl/source/outdev/polyline.cxx | |
parent | ffd55ff0b919a982f54db558b2341309bbabf0b9 (diff) |
VCL: rename OutputDevice::ImplInitFillColor and make it private
Change-Id: I01c0974d3a2f79cf3c6b9730ea306dcd49927a3c
Diffstat (limited to 'vcl/source/outdev/polyline.cxx')
-rw-r--r-- | vcl/source/outdev/polyline.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/polyline.cxx b/vcl/source/outdev/polyline.cxx index 2ddb191aa749..d261ccebc1f5 100644 --- a/vcl/source/outdev/polyline.cxx +++ b/vcl/source/outdev/polyline.cxx @@ -194,7 +194,7 @@ void OutputDevice::DrawPolyLine( const basegfx::B2DPolygon& rB2DPolygon, SetLineColor(); InitLineColor(); SetFillColor(aOldLineColor); - ImplInitFillColor(); + InitFillColor(); // draw usig a loop; else the topology will paint a PolyPolygon for(sal_uInt32 a(0); a < aAreaPolyPolygon.count(); a++) @@ -206,7 +206,7 @@ void OutputDevice::DrawPolyLine( const basegfx::B2DPolygon& rB2DPolygon, SetLineColor(aOldLineColor); InitLineColor(); SetFillColor(aOldFillColor); - ImplInitFillColor(); + InitFillColor(); if(bTryAA) { |