summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-31 19:29:31 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-01 12:29:39 +0200
commitee8f0a10661b747db9a82b9acba4de343a5a51d6 (patch)
treece9b6b2cf18caa73b8500245d558ff2ac484074d /writerfilter
parent0940229305247b4e64e8c85c9734020c9808a6ec (diff)
Fix '..'
To complete this: https://gerrit.libreoffice.org/#/c/78312/ This is a massive replace for ".." instead of "..." between words. It passed "make check" on Linux. Change-Id: I144d8061fca9f545c762941551e59dffdd3650e8 Reviewed-on: https://gerrit.libreoffice.org/78357 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 421e3af8bdc7..79f711668a5c 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -1839,7 +1839,7 @@ void DomainMapper_Impl::appendOLE( const OUString& rStreamName, const std::share
xOLEProperties->setPropertyValue(s, xReplacementProperties->getPropertyValue(s));
}
else
- // mimic the treatment of graphics here.. it seems anchoring as character
+ // mimic the treatment of graphics here... it seems anchoring as character
// gives a better ( visually ) result
xOLEProperties->setPropertyValue(getPropertyName( PROP_ANCHOR_TYPE ), uno::makeAny( text::TextContentAnchorType_AS_CHARACTER ) );
// remove ( if valid ) associated shape ( used for graphic replacement )
@@ -1905,7 +1905,7 @@ void DomainMapper_Impl::appendStarMath( const Value& val )
uno::makeAny( sal_Int32(size.Width())));
xStarMathProperties->setPropertyValue(getPropertyName( PROP_HEIGHT ),
uno::makeAny( sal_Int32(size.Height())));
- // mimic the treatment of graphics here.. it seems anchoring as character
+ // mimic the treatment of graphics here... it seems anchoring as character
// gives a better ( visually ) result
xStarMathProperties->setPropertyValue(getPropertyName( PROP_ANCHOR_TYPE ),
uno::makeAny( text::TextContentAnchorType_AS_CHARACTER ) );