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

Andrea Gelmini andrea.gelmini at gelma.net
Wed Dec 27 22:00:21 UTC 2017


 sc/source/filter/xcl97/xcl97rec.cxx        |    2 +-
 sw/qa/extras/ooxmlexport/ooxmlexport11.cxx |    2 +-
 sw/source/filter/ww8/docxsdrexport.cxx     |    2 +-
 unoxml/source/rdf/librdf_repository.cxx    |    4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit e4689afb970ec7090e6e604acda25c2aa12f3e87
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Wed Dec 27 21:13:26 2017 +0100

    Fix typos
    
    Change-Id: Icebbbb392d9187a11837b72116c00036247e9b74
    Reviewed-on: https://gerrit.libreoffice.org/47104
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/sc/source/filter/xcl97/xcl97rec.cxx b/sc/source/filter/xcl97/xcl97rec.cxx
index bf8cda6bc28b..6a793bb64d73 100644
--- a/sc/source/filter/xcl97/xcl97rec.cxx
+++ b/sc/source/filter/xcl97/xcl97rec.cxx
@@ -528,7 +528,7 @@ static void lcl_FillProps( EscherPropertyContainer& rPropOpt, SdrObject* pCaptio
             {
                 // If the Colour is the same as the 'ToolTip' System colour then
                 // use the default rather than the explicit colour value. This will
-                // be incorrect where user has chosen to use this colour explicity.
+                // be incorrect where user has chosen to use this colour explicitly.
                 Color aColor( (sal_uInt8)nValue, (sal_uInt8)( nValue >> 8 ), (sal_uInt8)( nValue >> 16 ) );
                 const StyleSettings& rSett = Application::GetSettings().GetStyleSettings();
                 if( aColor == rSett.GetHelpColor().GetColor() )
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
index e2366e3d48b5..00c362340ce5 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
@@ -184,7 +184,7 @@ DECLARE_OOXMLEXPORT_TEST(testTdf113547, "tdf113547.docx")
 DECLARE_OOXMLEXPORT_TEST(testTdf113399, "tdf113399.doc")
 {
     // 0 padding was not preserved
-    // In LO 0 is the defualt, but in OOXML format the default is 254 / 127
+    // In LO 0 is the default, but in OOXML format the default is 254 / 127
     uno::Reference<beans::XPropertySet> xPropSet(getShape(1), uno::UNO_QUERY);
     sal_Int32 nPaddingValue;
     xPropSet->getPropertyValue("TextLeftDistance") >>= nPaddingValue;
diff --git a/sw/source/filter/ww8/docxsdrexport.cxx b/sw/source/filter/ww8/docxsdrexport.cxx
index 29b32272f66d..cdeb103d66e6 100644
--- a/sw/source/filter/ww8/docxsdrexport.cxx
+++ b/sw/source/filter/ww8/docxsdrexport.cxx
@@ -1605,7 +1605,7 @@ void DocxSdrExport::writeDMLTextFrame(ww8::Frame const* pParentFrame, int nAncho
 
     // We need to init padding to 0, if it's not set.
     // In LO the default is 0 and so ins attributes are not set when padding is 0
-    // but in MSO the default is 254 / 127, so we need to set 0 padding explicitely
+    // but in MSO the default is 254 / 127, so we need to set 0 padding explicitly
     if(!m_pImpl->m_pBodyPrAttrList->hasAttribute(XML_lIns))
         m_pImpl->m_pBodyPrAttrList->add(XML_lIns, OString::number(0));
     if(!m_pImpl->m_pBodyPrAttrList->hasAttribute(XML_tIns))
diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx
index bbb2c1295280..57428c002823 100644
--- a/unoxml/source/rdf/librdf_repository.cxx
+++ b/unoxml/source/rdf/librdf_repository.cxx
@@ -456,7 +456,7 @@ private:
     // needed for synchronizing access to librdf (it doesn't do win32 threading)
     ::osl::Mutex & m_rMutex;
     // the query (in case this is a result of a graph query)
-    // not that the redland documentation spells this out explicity, but
+    // not that the redland documentation spells this out explicitly, but
     // queries must be freed only after all the results are completely read
     std::shared_ptr<librdf_query>  const m_pQuery;
     std::shared_ptr<librdf_node>   const m_pContext;
@@ -566,7 +566,7 @@ private:
     ::rtl::Reference< librdf_Repository > m_xRep;
     // needed for synchronizing access to librdf (it doesn't do win32 threading)
     ::osl::Mutex & m_rMutex;
-    // not that the redland documentation spells this out explicity, but
+    // not that the redland documentation spells this out explicitly, but
     // queries must be freed only after all the results are completely read
     std::shared_ptr<librdf_query> const m_pQuery;
     std::shared_ptr<librdf_query_results> const m_pQueryResult;


More information about the Libreoffice-commits mailing list