[Libreoffice-commits] core.git: vcl/source
Chris Sherlock
chris.sherlock79 at gmail.com
Mon Nov 3 01:36:40 PST 2014
vcl/source/outdev/line.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 656ffdd4bf095152fb95f4d9ddb766964cd18c3b
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date: Sun Nov 2 15:55:33 2014 +1100
vcl: typo in variable name in PaintLineGeometryWithEvtlExpand
Change-Id: I87084cbc4d6a8b6f5edbf8b90791c2b1e75b4afb
Reviewed-on: https://gerrit.libreoffice.org/12211
Reviewed-by: Chris Sherlock <chris.sherlock79 at gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79 at gmail.com>
diff --git a/vcl/source/outdev/line.cxx b/vcl/source/outdev/line.cxx
index 752bad4..366d992 100644
--- a/vcl/source/outdev/line.cxx
+++ b/vcl/source/outdev/line.cxx
@@ -184,12 +184,12 @@ void OutputDevice::PaintLineGeometryWithEvtlExpand(
for(sal_uInt32 c(0); c < aLinePolyPolygon.count(); c++)
{
- basegfx::B2DPolyPolygon aLineTraget;
+ basegfx::B2DPolyPolygon aLineTarget;
basegfx::tools::applyLineDashing(
aLinePolyPolygon.getB2DPolygon(c),
fDotDashArray,
- &aLineTraget);
- aResult.append(aLineTraget);
+ &aLineTarget);
+ aResult.append(aLineTarget);
}
aLinePolyPolygon = aResult;
More information about the Libreoffice-commits
mailing list