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

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sat Sep 26 08:03:09 UTC 2020


 sd/source/ui/inc/slideshow.hxx            |    2 +-
 sw/qa/extras/ooxmlexport/ooxmlexport3.cxx |    2 +-
 sw/source/filter/xml/xmlimpit.cxx         |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 200a46c0a30c0ff6b1e9df1dc4bd086dbff75c8b
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Sep 25 12:24:00 2020 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sat Sep 26 10:02:28 2020 +0200

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

diff --git a/sd/source/ui/inc/slideshow.hxx b/sd/source/ui/inc/slideshow.hxx
index 9b6087a5d311..15af88f8d10b 100644
--- a/sd/source/ui/inc/slideshow.hxx
+++ b/sd/source/ui/inc/slideshow.hxx
@@ -157,7 +157,7 @@ public:
 
     // events
     void resize( const Size &rSize );
-    // return false if the activate failed. callers should call end in response to failre
+    // return false if the activate failed. callers should call end in response to failure
     bool activate(ViewShellBase& rBase);
     void deactivate();
     void paint();
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx
index 0085734450c0..200d34033ede 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport3.cxx
@@ -324,7 +324,7 @@ DECLARE_OOXMLEXPORT_TEST(testCalendar3, "calendar3.docx")
     CPPUNIT_ASSERT_EQUAL(20.f, getProperty<float>(getRun(getParagraphOfText(1, xCell2->getText()),1), "CharHeight"));
 
     // tdf#132149 Despite specifying portrait, the page size's specified width is greater than its height.
-    // Both Word and LO display it as landscape, so ensure that it round-trips with landscape dimentions.
+    // Both Word and LO display it as landscape, so ensure that it round-trips with landscape dimensions.
     uno::Reference<beans::XPropertySet> xPageStyle(getStyles("PageStyles")->getByName("Standard"), uno::UNO_QUERY);
     CPPUNIT_ASSERT_EQUAL_MESSAGE("Page Width (mm) ", sal_Int32(148), getProperty<sal_Int32>(xPageStyle, "Width") / 100);
     CPPUNIT_ASSERT_EQUAL_MESSAGE("Page Height (mm)", sal_Int32(105), getProperty<sal_Int32>(xPageStyle, "Height") / 100);
diff --git a/sw/source/filter/xml/xmlimpit.cxx b/sw/source/filter/xml/xmlimpit.cxx
index 2d70ac8013fb..aab0a0069273 100644
--- a/sw/source/filter/xml/xmlimpit.cxx
+++ b/sw/source/filter/xml/xmlimpit.cxx
@@ -94,7 +94,7 @@ void SvXMLImportItemMapper::importXML( SfxItemSet& rSet,
 
         // find a map entry for this attribute
         sal_Int32 nLookupToken = nToken;
-        // compatiblity namespaces need to be tranformed into current namespace before looking up
+        // compatibility namespaces need to be transformed into current namespace before looking up
         if (IsTokenInNamespace(nLookupToken, XML_NAMESPACE_FO_COMPAT))
             nLookupToken = XML_ELEMENT(FO, (nLookupToken & TOKEN_MASK));
         SvXMLItemMapEntry const * pEntry = mrMapEntries->getByName( nLookupToken );


More information about the Libreoffice-commits mailing list