summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-02-14 08:13:05 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-02-14 08:56:10 +0100
commit2dda7cca6feb14b4c6f6f04065e23a8e70e05be6 (patch)
tree92dd402dae7dacf074559d86be9919a7012b0bfb /sd
parentfa4def2a2b93868b3750df06b7655801639b5233 (diff)
Fix typos
Change-Id: Icee735b303ca72bba7b2680676b0c0092d27e2ec Reviewed-on: https://gerrit.libreoffice.org/49699 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sd')
-rw-r--r--sd/qa/unit/import-tests.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/qa/unit/import-tests.cxx b/sd/qa/unit/import-tests.cxx
index 2ed7337438fd..02ab05d93b0d 100644
--- a/sd/qa/unit/import-tests.cxx
+++ b/sd/qa/unit/import-tests.cxx
@@ -2466,14 +2466,14 @@ void SdImportTest::testTdf51340()
CPPUNIT_ASSERT_EQUAL( static_cast<sal_Int16>(css::style::LineSpacingMode::PROP), aSpacing.Mode );
CPPUNIT_ASSERT_EQUAL( static_cast<sal_Int16>(125), aSpacing.Height );
- // Third paragraph has a 70% line spacing set directly on normal slide (master slide property ir overriden)
+ // Third paragraph has a 70% line spacing set directly on normal slide (master slide property is overridden)
xParagraph.set( getParagraphFromShape( 2, xShape ) );
xPropSet.set( xParagraph, uno::UNO_QUERY_THROW );
xPropSet->getPropertyValue( "ParaLineSpacing" ) >>= aSpacing;
CPPUNIT_ASSERT_EQUAL( static_cast<sal_Int16>(css::style::LineSpacingMode::PROP), aSpacing.Mode );
CPPUNIT_ASSERT_EQUAL( static_cast<sal_Int16>(70), aSpacing.Height );
- // Fourth paragraph has a 190% line spacing set directly on normal slide (slide layout property is overriden)
+ // Fourth paragraph has a 190% line spacing set directly on normal slide (slide layout property is overridden)
xParagraph.set( getParagraphFromShape( 3, xShape ) );
xPropSet.set( xParagraph, uno::UNO_QUERY_THROW );
xPropSet->getPropertyValue( "ParaLineSpacing" ) >>= aSpacing;