diff options
-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 ) ); |