summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-01-03 15:05:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-01-03 17:17:42 +0100
commit2eee8df0e89b7b2a156769c2ebdd562bf4d21f62 (patch)
treed19f0929ccd193a3eb000d6102a6e5579241b461 /filter
parent0cb58b2a605529cf59c0e445fc86dca4c92816e7 (diff)
Degree10->Degree100 in XPolygon
Since some of the call sites are passing in Degree100, let us preserve that accuracy. Change-Id: Idfc9c6dfcbc9e164085aacd0c775eac929f33d4c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108631 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/msdffimp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index bddc9c2552c2..8129998aac6a 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -886,7 +886,7 @@ static basegfx::B2DPolyPolygon GetLineArrow( const sal_Int32 nLineWidth, const s
Point( static_cast<sal_Int32>( fWidthMul * fLineWidth * 0.50 ), 0 ),
static_cast<sal_Int32>( fWidthMul * fLineWidth * 0.50 ),
static_cast<sal_Int32>( fLengthMul * fLineWidth * 0.50 ),
- 0_deg10, 3600_deg10 ).getB2DPolygon() );
+ 0_deg100, 36000_deg100 ).getB2DPolygon() );
rbArrowCenter = true;
aArrowName.append("msArrowOvalEnd ");
}