[Libreoffice-commits] core.git: basic/source extensions/source odk/examples sc/source sd/source

Andrea Gelmini andrea.gelmini at gelma.net
Wed Nov 15 06:53:05 UTC 2017


 basic/source/runtime/iosys.cxx               |    2 +-
 extensions/source/dbpilots/controlwizard.cxx |    2 +-
 odk/examples/java/PropertySet/PropTest.java  |    2 +-
 sc/source/core/tool/interpr8.cxx             |    2 +-
 sc/source/ui/view/dbfunc3.cxx                |    6 +++---
 sd/source/ui/view/Outliner.cxx               |    2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit a8f31d5120c2ae9109d316db73b5adf9cb26c892
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Tue Nov 14 12:10:55 2017 +0100

    Fix typos
    
    Change-Id: I8bdced3fa572074aedabdcfce841adf525ae8b81
    Reviewed-on: https://gerrit.libreoffice.org/44710
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Mark Page <aptitude at btconnect.com>

diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx
index 68f039a7b377..e8f4185c5bcf 100644
--- a/basic/source/runtime/iosys.cxx
+++ b/basic/source/runtime/iosys.cxx
@@ -831,7 +831,7 @@ void SbiIoSystem::ReadCon(OString& rIn)
     aPrompt.clear();
 }
 
-// output of a MessageBox, if theres a CR in the console-buffer
+// output of a MessageBox, if there's a CR in the console-buffer
 
 void SbiIoSystem::WriteCon(const OUString& rText)
 {
diff --git a/extensions/source/dbpilots/controlwizard.cxx b/extensions/source/dbpilots/controlwizard.cxx
index 496b52dd0e58..54d10fd2c036 100644
--- a/extensions/source/dbpilots/controlwizard.cxx
+++ b/extensions/source/dbpilots/controlwizard.cxx
@@ -438,7 +438,7 @@ namespace dbp
             // set the new connection
             if ( _bAutoDispose )
             {
-                // for this, use a AutoDisposer (so the conn is cleaned up when the form dies or get's another connection)
+                // for this, use a AutoDisposer (so the conn is cleaned up when the form dies or gets another connection)
                 Reference< XRowSet > xFormRowSet( m_aContext.xForm, UNO_QUERY );
                 rtl::Reference<OAutoConnectionDisposer> pAutoDispose = new OAutoConnectionDisposer( xFormRowSet, _rxConn );
             }
diff --git a/odk/examples/java/PropertySet/PropTest.java b/odk/examples/java/PropertySet/PropTest.java
index 50fed5c36cbe..c77a905e870d 100644
--- a/odk/examples/java/PropertySet/PropTest.java
+++ b/odk/examples/java/PropertySet/PropTest.java
@@ -57,7 +57,7 @@ import com.sun.star.lang.XTypeProvider;
 import com.sun.star.beans.PropertyAttribute;
 
 /**
-   This component contains the followin properties:
+   This component contains the following properties:
  *  <table border>
  *  <tr>
  *  <th> Property Name </th>
diff --git a/sc/source/core/tool/interpr8.cxx b/sc/source/core/tool/interpr8.cxx
index 07bea611d5f8..fa87be067f89 100644
--- a/sc/source/core/tool/interpr8.cxx
+++ b/sc/source/core/tool/interpr8.cxx
@@ -80,7 +80,7 @@ private:
     std::unique_ptr<double[]> mpForecast;                 // forecasted value array
     SCSIZE mnSmplInPrd;                 // samples per period
     double mfStepSize;                  // increment of X in maRange
-    double mfAlpha, mfBeta, mfGamma;    // constants to minimise the RMSE in the ES-equations
+    double mfAlpha, mfBeta, mfGamma;    // constants to minimize the RMSE in the ES-equations
     SCSIZE mnCount;                     // No of data points
     bool mbInitialised;
     int mnMonthDay;                     // n-month X-interval, value is day of month
diff --git a/sc/source/ui/view/dbfunc3.cxx b/sc/source/ui/view/dbfunc3.cxx
index 99db0e7f6839..11a16575e36a 100644
--- a/sc/source/ui/view/dbfunc3.cxx
+++ b/sc/source/ui/view/dbfunc3.cxx
@@ -2158,12 +2158,12 @@ void ScDBFunc::RepeatDB( bool bRecord )
 
         if (bSort)
         {
-            pDBData->GetSortParam( aSortParam );            // range may have chaged
+            pDBData->GetSortParam( aSortParam );            // range may have changed
             Sort( aSortParam, false, false);
         }
         if (bQuery)
         {
-            pDBData->GetQueryParam( aQueryParam );          // range may have chaged
+            pDBData->GetQueryParam( aQueryParam );          // range may have changed
             ScRange aAdvSource;
             if (pDBData->GetAdvancedQuerySource(aAdvSource))
             {
@@ -2179,7 +2179,7 @@ void ScDBFunc::RepeatDB( bool bRecord )
         }
         if (bSubTotal)
         {
-            pDBData->GetSubTotalParam( aSubTotalParam );    // range may have chaged
+            pDBData->GetSubTotalParam( aSubTotalParam );    // range may have changed
             aSubTotalParam.bRemoveOnly = false;
             DoSubTotals( aSubTotalParam, false );
         }
diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx
index 22ab4facd0ae..2609e6e65bce 100644
--- a/sd/source/ui/view/Outliner.cxx
+++ b/sd/source/ui/view/Outliner.cxx
@@ -1007,7 +1007,7 @@ void SdOutliner::RestoreStartPosition()
     // start position is not requested.
     if (mnStartPageIndex == (sal_uInt16)-1 )
         bRestore = false;
-    // Dont't restore when the view shell is not valid.
+    // Don't restore when the view shell is not valid.
     std::shared_ptr<sd::ViewShell> pViewShell (mpWeakViewShell.lock());
     if (pViewShell == nullptr)
         bRestore = false;


More information about the Libreoffice-commits mailing list