diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-31 19:29:31 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-01 12:29:39 +0200 |
commit | ee8f0a10661b747db9a82b9acba4de343a5a51d6 (patch) | |
tree | ce9b6b2cf18caa73b8500245d558ff2ac484074d /sd | |
parent | 0940229305247b4e64e8c85c9734020c9808a6ec (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 'sd')
-rw-r--r-- | sd/source/core/sdpage_animations.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/core/sdpage_animations.cxx b/sd/source/core/sdpage_animations.cxx index cb91df1caf3b..f9d55654ff0e 100644 --- a/sd/source/core/sdpage_animations.cxx +++ b/sd/source/core/sdpage_animations.cxx @@ -113,7 +113,7 @@ void SdPage::onParagraphInserted( ::Outliner* pOutliner, Paragraph const * pPara ParagraphTarget aTarget; aTarget.Shape.set( pObj->getUnoShape(), UNO_QUERY ); /* FIXME: Paragraph should be sal_Int32, though more than 64k - * paragrapsh at a shape are unlikely.. */ + * paragrapsh at a shape are unlikely... */ aTarget.Paragraph = static_cast<sal_Int16>(pOutliner->GetAbsPos( pPara )); getMainSequence()->insertTextRange( makeAny( aTarget ) ); @@ -128,7 +128,7 @@ void SdPage::onParagraphRemoving( ::Outliner* pOutliner, Paragraph const * pPara ParagraphTarget aTarget; aTarget.Shape.set( pObj->getUnoShape(), UNO_QUERY ); /* FIXME: Paragraph should be sal_Int32, though more than 64k - * paragrapsh at a shape are unlikely.. */ + * paragrapsh at a shape are unlikely... */ aTarget.Paragraph = static_cast<sal_Int16>(pOutliner->GetAbsPos( pPara )); getMainSequence()->disposeTextRange( makeAny( aTarget ) ); |