summaryrefslogtreecommitdiff
path: root/vcl/source/outdev/polyline.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-11-02 12:38:16 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2014-11-02 03:03:49 +0000
commitb167d1127e1579468a74c4414e7f4f33d9d24122 (patch)
tree71122ce2336444fe968f60d54d56a8c8c57e5432 /vcl/source/outdev/polyline.cxx
parent06bde51ced10e9d2997157b91c85d80100b0dafb (diff)
vcl: rename OutputDevice::DrawPolyLineWithLineInfo() to drawPolyLine()
Change-Id: I145ebcfb92fc75f4558d3bf090093aef9e848136 Reviewed-on: https://gerrit.libreoffice.org/12188 Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com> Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl/source/outdev/polyline.cxx')
-rw-r--r--vcl/source/outdev/polyline.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/outdev/polyline.cxx b/vcl/source/outdev/polyline.cxx
index d0f2f619a8c3..89e27c75344c 100644
--- a/vcl/source/outdev/polyline.cxx
+++ b/vcl/source/outdev/polyline.cxx
@@ -126,7 +126,7 @@ void OutputDevice::DrawPolyLine( const Polygon& rPoly, const LineInfo& rLineInfo
if ( mpMetaFile )
mpMetaFile->AddAction( new MetaPolyLineAction( rPoly, rLineInfo ) );
- DrawPolyLineWithLineInfo(rPoly, rLineInfo);
+ drawPolyLine(rPoly, rLineInfo);
}
void OutputDevice::DrawPolyLine( const basegfx::B2DPolygon& rB2DPolygon,
@@ -226,11 +226,11 @@ void OutputDevice::DrawPolyLine( const basegfx::B2DPolygon& rB2DPolygon,
if( fLineWidth != 0.0 )
aLineInfo.SetWidth( static_cast<long>(fLineWidth+0.5) );
- DrawPolyLineWithLineInfo( aToolsPolygon, aLineInfo );
+ drawPolyLine( aToolsPolygon, aLineInfo );
}
}
-void OutputDevice::DrawPolyLineWithLineInfo(const Polygon& rPoly, const LineInfo& rLineInfo)
+void OutputDevice::drawPolyLine(const Polygon& rPoly, const LineInfo& rLineInfo)
{
sal_uInt16 nPoints(rPoly.GetSize());