[Libreoffice-commits] core.git: sd/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sun Feb 9 18:46:39 UTC 2020


 sd/source/core/sdpage_animations.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e9cc1df70a08812591d836312e672b7749c1bdcf
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sun Feb 9 16:06:30 2020 +0100
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sun Feb 9 19:46:08 2020 +0100

    Fix typo
    
    Change-Id: Ic0d026ceeedc4118a04f22a9d82a0c85321d131a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88338
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

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


More information about the Libreoffice-commits mailing list