diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-02-09 16:06:30 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-02-09 19:46:08 +0100 |
commit | e9cc1df70a08812591d836312e672b7749c1bdcf (patch) | |
tree | c3168aa1d7e3ac1247b52b1464b748d2967ebd33 | |
parent | ba9f0b4fa5c380958617ffab04d87c5049a6178c (diff) |
Fix typo
Change-Id: Ic0d026ceeedc4118a04f22a9d82a0c85321d131a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88338
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-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 3a1a75d5869f..47094551e950 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... */ + * paragraphs 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... */ + * paragraphs at a shape are unlikely... */ aTarget.Paragraph = static_cast<sal_Int16>(pOutliner->GetAbsPos( pPara )); getMainSequence()->disposeTextRange( makeAny( aTarget ) ); |