[Libreoffice-commits] core.git: solenv/gbuild solenv/maven soltools/cpp sot/source stoc/test svgio/inc svgio/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Mon Aug 12 09:44:08 UTC 2019


 solenv/gbuild/platform/com_MSC_class.mk       |    2 +-
 solenv/maven/README.md                        |    4 ++--
 soltools/cpp/_include.c                       |    2 +-
 sot/source/sdstor/ucbstorage.cxx              |    4 ++--
 stoc/test/testregistry.cxx                    |    4 ++--
 stoc/test/testsmgr_cpnt.cxx                   |    2 +-
 svgio/inc/svgnode.hxx                         |    2 +-
 svgio/source/svgreader/svgstyleattributes.cxx |    6 +++---
 8 files changed, 13 insertions(+), 13 deletions(-)

New commits:
commit ec3a14ba93ba0be49170afa979f299bbf9e24300
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sun Aug 11 18:30:57 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Aug 12 11:43:04 2019 +0200

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

diff --git a/solenv/gbuild/platform/com_MSC_class.mk b/solenv/gbuild/platform/com_MSC_class.mk
index 02f7f44d5143..64615ea13282 100644
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -513,7 +513,7 @@ endef
 
 # ExternalProject class
 
-# Use the gcc wrappers for a autoconf based project
+# Use the gcc wrappers for an autoconf based project
 #
 # gb_ExternalProject_register_targets project state_target
 define gb_ExternalProject_use_autoconf
diff --git a/solenv/maven/README.md b/solenv/maven/README.md
index 29f853fbb6e5..0b19cd2fe87a 100644
--- a/solenv/maven/README.md
+++ b/solenv/maven/README.md
@@ -263,7 +263,7 @@ can be set:
   VERBOSE=1 buck build api_install
 ----
 
-Once executed, he local Maven respoitory contains the LibreOffice API
+Once executed, the local Maven repository contains the LibreOffice API
 artifacts:
 
 ----
@@ -340,7 +340,7 @@ Once a repository is closed you can find the URL to it in the `Summary`
 section, e.g. https://oss.sonatype.org/content/repositories/orglibreoffice-4711
 
 Use this URL for further testing of the artifacts in this repository,
-e.g. to try building a extension against this API in this repository
+e.g. to try building an extension against this API in this repository
 update the version in the `pom.xml` and configure the repository:
 
 ----
diff --git a/soltools/cpp/_include.c b/soltools/cpp/_include.c
index 57ca137cb2cd..19d14ae68f12 100644
--- a/soltools/cpp/_include.c
+++ b/soltools/cpp/_include.c
@@ -218,7 +218,7 @@ void
 }
 
 /*
- * Generate a extern C directive
+ * Generate an extern C directive
  */
 void
     genwrap(int end)
diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx
index 591a22805946..0aa9fff0b3c9 100644
--- a/sot/source/sdstor/ucbstorage.cxx
+++ b/sot/source/sdstor/ucbstorage.cxx
@@ -896,7 +896,7 @@ sal_uInt64 UCBStorageStream_Impl::SeekPos(sal_uInt64 const nPos)
         if( m_pStream->Tell() > nPos
             || m_pStream->Seek( STREAM_SEEK_TO_END ) > nPos )
         {
-            // no copiing is required
+            // no copying is required
             aResult = m_pStream->Seek( nPos );
         }
         else
@@ -2311,7 +2311,7 @@ void UCBStorage::SetClassId( const ClsId& rClsId )
     if ( pImp->m_aClassId == SvGlobalName() )
         return;
 
-    // in OLE storages the clipboard format an the user name will be transferred when a storage is copied because both are
+    // in OLE storages the clipboard format and the user name will be transferred when a storage is copied because both are
     // stored in one the substreams
     // UCB storages store the content type information as content type in the manifest file and so this information must be
     // kept up to date, and also the other type information that is hold only at runtime because it can be reconstructed from
diff --git a/stoc/test/testregistry.cxx b/stoc/test/testregistry.cxx
index 6e74998c7980..d81328ac6f37 100644
--- a/stoc/test/testregistry.cxx
+++ b/stoc/test/testregistry.cxx
@@ -215,7 +215,7 @@ void test_SimpleRegistry(
         xSubKey->setAsciiValue(OUString( "I'm an ascii value" ));
 
         xSubKey = xKey->createKey(OUString( "ThirdSubKey" ));
-        xSubKey->setStringValue(OUString( "I'm an Unicode value" ));
+        xSubKey->setStringValue(OUString( "I'm a Unicode value" ));
 
         xSubKey = xKey->createKey(OUString( "FourthSubKey" ));
         Sequence<sal_Int8> aSeq((sal_Int8*)"I'm a binary value", 25);
@@ -242,7 +242,7 @@ void test_SimpleRegistry(
             } else
             if (name == "/FirstKey/ThirdSubKey" )
             {
-                OSL_ENSURE( xSubKey->getStringValue() == "I'm an Unicode value",
+                OSL_ENSURE( xSubKey->getStringValue() == "I'm a Unicode value",
                             "test_SimpleRegistry error 12" );
             } else
             if (name == "/FirstKey/FourthSubKey" )
diff --git a/stoc/test/testsmgr_cpnt.cxx b/stoc/test/testsmgr_cpnt.cxx
index ddb6e4ca1b29..b09bb7ea3a45 100644
--- a/stoc/test/testsmgr_cpnt.cxx
+++ b/stoc/test/testsmgr_cpnt.cxx
@@ -205,7 +205,7 @@ extern "C" void SAL_CALL test_ServiceManager()
     }
     OSL_ENSURE( nLen == 8, "more than 6 factories" );
 
-    // try to get an instance for a unknown service
+    // try to get an instance for an unknown service
     OSL_VERIFY( !xSMgr->createInstance("bla.blup.Q").is() );
 
 
diff --git a/svgio/inc/svgnode.hxx b/svgio/inc/svgnode.hxx
index c10179bf236a..86a83e6afab6 100644
--- a/svgio/inc/svgnode.hxx
+++ b/svgio/inc/svgnode.hxx
@@ -107,7 +107,7 @@ namespace svgio
             Display                     maDisplay;
 
             // CSS style vector chain, used in decompose phase and built up once per node.
-            // It contains the StyleHierarchy for the local node. INdependent from the
+            // It contains the StyleHierarchy for the local node. Independent from the
             // node hierarchy itself which also needs to be used in style entry solving
             ::std::vector< const SvgStyleAttributes* > maCssStyleVector;
 
diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx
index 9b6b81cbcdb2..b7f571478ee0 100644
--- a/svgio/source/svgreader/svgstyleattributes.cxx
+++ b/svgio/source/svgreader/svgstyleattributes.cxx
@@ -1209,7 +1209,7 @@ namespace svgio
             // This is part of the SVG import of self-written SVGs from
             // Draw/Impress containing multiple Slides/Pages. To be able
             // to later 'break' these to multiple Pages if wanted, embed
-            // each Page-Content in a identifiable Primitive Grouping
+            // each Page-Content in an identifiable Primitive Grouping
             // Object.
             // This is the case when the current Node is a GroupNode, has
             // class="Page" set, has a parent that also is a GroupNode
@@ -2505,7 +2505,7 @@ namespace svgio
                 if(!maFontSizeNumber.isPositive())
                     return aDefaultSize;
 
-                // #122524# Handle Unit_percent realtive to parent FontSize (see SVG1.1
+                // #122524# Handle Unit_percent relative to parent FontSize (see SVG1.1
                 // spec 10.10 Font selection properties \91font-size\92, lastline (click 'normative
                 // definition of the property')
                 if(Unit_percent == maFontSizeNumber.getUnit())
@@ -2969,7 +2969,7 @@ namespace svgio
 
         SvgNumber SvgStyleAttributes::getBaselineShiftNumber() const
         {
-            // #122524# Handle Unit_percent realtive to parent BaselineShift
+            // #122524# Handle Unit_percent relative to parent BaselineShift
             if(Unit_percent == maBaselineShiftNumber.getUnit())
             {
                 const SvgStyleAttributes* pSvgStyleAttributes = getParentStyle();


More information about the Libreoffice-commits mailing list