summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 17:55:37 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-05 18:43:22 +0200
commit71740e630321f1cf12363995cdfc0a53fa2cd8cb (patch)
tree3327ea15c43de99095c8acec909fb2e37627ff22 /filter
parentad657dddd0b5f34a7fedde54b90d59d69513336d (diff)
Fix typos
Change-Id: Ibfff5af316a2c18b5735245caf5a27a562bc0f52 Reviewed-on: https://gerrit.libreoffice.org/78664 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/escherex.cxx2
-rw-r--r--filter/source/msfilter/msdffimp.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
index 69bb2b92f257..a5caf5328a40 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -1059,7 +1059,7 @@ void EscherPropertyContainer::CreateLineProperties(
default : break;
}
// Try to detect exact prstDash styles. Use a similar method as in oox export.
- // Map it to a roughly fitting prstDash in outher cases.
+ // Map it to a roughly fitting prstDash in other cases.
bool bIsConverted = false;
bool bIsRelative = pLineDash->Style == drawing::DashStyle_RECTRELATIVE
|| pLineDash->Style == drawing::DashStyle_ROUNDRELATIVE;
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 3dc792e7674f..9e303d876cf8 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -966,13 +966,13 @@ void DffPropertyReader::ApplyLineAttributes( SfxItemSet& rSet, const MSO_SPT eSh
// "dash" is always the second dash. MS Office always starts with the longer dash, so
// set it here accordingly.
// The preset from binary is essentially the same as from OOXML. So here the same
- // setting is used as in oox import. The comment corrensponds to
+ // setting is used as in oox import. The comment corresponds to
// "dots, dotLen, dashes, dashLen, distance" there.
// MS Office uses always relative length, so no need to consider nLineWidth
// here. Values are of kind 300 for 300% in css::drawing::DashStyle, for example.
sal_uInt16 nDots = 1; // in all cases, "solid" is treated above
- // initalize, will be changened if necessary
+ // initialize, will be changed if necessary
sal_uInt32 nDotLen = 300;
sal_uInt16 nDashes = 0;
sal_uInt32 nDashLen = 0;