Kaydet (Commit) 656ffdd4 authored tarafından Chris Sherlock's avatar Chris Sherlock

vcl: typo in variable name in PaintLineGeometryWithEvtlExpand

Change-Id: I87084cbc4d6a8b6f5edbf8b90791c2b1e75b4afb
Reviewed-on: https://gerrit.libreoffice.org/12211Reviewed-by: 's avatarChris Sherlock <chris.sherlock79@gmail.com>
Tested-by: 's avatarChris Sherlock <chris.sherlock79@gmail.com>
üst 886eadd0
...@@ -184,12 +184,12 @@ void OutputDevice::PaintLineGeometryWithEvtlExpand( ...@@ -184,12 +184,12 @@ void OutputDevice::PaintLineGeometryWithEvtlExpand(
for(sal_uInt32 c(0); c < aLinePolyPolygon.count(); c++) for(sal_uInt32 c(0); c < aLinePolyPolygon.count(); c++)
{ {
basegfx::B2DPolyPolygon aLineTraget; basegfx::B2DPolyPolygon aLineTarget;
basegfx::tools::applyLineDashing( basegfx::tools::applyLineDashing(
aLinePolyPolygon.getB2DPolygon(c), aLinePolyPolygon.getB2DPolygon(c),
fDotDashArray, fDotDashArray,
&aLineTraget); &aLineTarget);
aResult.append(aLineTraget); aResult.append(aLineTarget);
} }
aLinePolyPolygon = aResult; aLinePolyPolygon = aResult;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment