diff options
author | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2023-08-25 09:48:37 +0200 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2023-08-25 11:12:02 +0200 |
commit | df982f67ced630fc417540941392459dee8ab7eb (patch) | |
tree | df371d0664e800fc7468c14077d583d434b941a2 /oox | |
parent | 05f7ab11bec87b706f598ae4e81d1f20cd4f1312 (diff) |
Resolves tdf#155926 - Rename "Line Style 9"
Sparse dash
Change-Id: Ia676358ea0de4437dd2e5f210b26a4e97f8d8758
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156090
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/lineproperties.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/lineproperties.cxx b/oox/source/drawingml/lineproperties.cxx index 5d818a26c613..d52bf07498ee 100644 --- a/oox/source/drawingml/lineproperties.cxx +++ b/oox/source/drawingml/lineproperties.cxx @@ -130,7 +130,7 @@ void lclRecoverStandardDashStyles(LineDash& orLineDash, sal_Int32 nLineWidth) // Use same ersatz for hairline as in export. double fWidthHelp = nLineWidth == 0 ? 26.95/100.0 : nLineWidth / 100.0; // start with (var) cases, because they have no rounding problems - // "Fine Dashed", "Line Style 9" and "Dashed (var)" need no recover + // "Fine Dashed", "Sparse Dash" and "Dashed (var)" need no recover if (nDots == 3 && nDotLen == 197 &&nDashes == 3 && nDashLen == 100 && nDistance == 100) { // "3 Dashes 3 Dots (var)" orLineDash.DashLen = 0; |