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

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Jul 18 07:53:09 UTC 2018


 basic/source/classes/sbxmod.cxx  |    4 ++--
 basic/source/runtime/methods.cxx |    2 +-
 basic/source/uno/namecont.cxx    |    6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 618e1fdac12126ab8fc0c90d8b9508825f533c5c
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Tue Jul 17 23:17:56 2018 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Wed Jul 18 09:52:44 2018 +0200

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

diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index d1a337dbb007..bf1a90c7b70e 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -1218,7 +1218,7 @@ void SbModule::RunInit()
      && !pImage->bInit
      && pImage->IsFlag( SbiImageFlags::INITCODE ) )
     {
-        // Set flag, so that RunInit get activ (Testtool)
+        // Set flag, so that RunInit get active (Testtool)
         GetSbData()->bRunInit = true;
 
         SbModule* pOldMod = GetSbData()->pMod;
@@ -1236,7 +1236,7 @@ void SbModule::RunInit()
         pImage->bInit = true;
         pImage->bFirstInit = false;
 
-        // RunInit is not activ anymore
+        // RunInit is not active anymore
         GetSbData()->bRunInit = false;
     }
 }
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 919b81247bfe..756c9d044f87 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -4593,7 +4593,7 @@ void SbRtl_Partition(StarBASIC *, SbxArray & rPar, bool)
     // of the Partition function with several values of Number, the resulting text
     // will be handled properly during any subsequent sort operation.
 
-    // calculate the  maximun number of characters before lowervalue and uppervalue
+    // calculate the maximum number of characters before lowervalue and uppervalue
     OUString aBeforeStart = OUString::number( nStart - 1 );
     OUString aAfterStop = OUString::number( nStop + 1 );
     sal_Int32 nLen1 = aBeforeStart.getLength();
diff --git a/basic/source/uno/namecont.cxx b/basic/source/uno/namecont.cxx
index b0cea4fed6be..910cf3fd9db2 100644
--- a/basic/source/uno/namecont.cxx
+++ b/basic/source/uno/namecont.cxx
@@ -168,7 +168,7 @@ void NameContainer::replaceByName( const OUString& aName, const Any& aElement )
     }
 
     /*  After the container event has been fired (one listener will update the
-        core Basic manager), fire change event. Listeners can rely that the
+        core Basic manager), fire change event. Listeners can rely on that the
         Basic source code of the core Basic manager is up-to-date. */
     if( maChangesListeners.getLength() > 0 )
     {
@@ -219,7 +219,7 @@ void NameContainer::insertNoCheck(const OUString& aName, const Any& aElement)
     }
 
     /*  After the container event has been fired (one listener will update the
-        core Basic manager), fire change event. Listeners can rely that the
+        core Basic manager), fire change event. Listeners can rely on that the
         Basic source code of the core Basic manager is up-to-date. */
     if( maChangesListeners.getLength() > 0 )
     {
@@ -273,7 +273,7 @@ void NameContainer::removeByName( const OUString& aName )
     }
 
     /*  After the container event has been fired (one listener will update the
-        core Basic manager), fire change event. Listeners can rely that the
+        core Basic manager), fire change event. Listeners can rely on that the
         Basic source code of the core Basic manager is up-to-date. */
     if( maChangesListeners.getLength() > 0 )
     {


More information about the Libreoffice-commits mailing list