[Libreoffice-commits] core.git: chart2/qa dbaccess/source desktop/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Mon Aug 19 07:42:22 UTC 2019


 chart2/qa/extras/PivotChartTest.cxx            |    8 ++++----
 dbaccess/source/core/dataaccess/connection.cxx |    2 +-
 dbaccess/source/ui/browser/sbagrid.cxx         |    2 +-
 dbaccess/source/ui/inc/TableConnection.hxx     |    2 +-
 desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx |    2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 4ca566f215c8bd246351360ae7e3c943f2e9bf9a
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Mon Aug 19 00:30:25 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Aug 19 09:41:45 2019 +0200

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

diff --git a/chart2/qa/extras/PivotChartTest.cxx b/chart2/qa/extras/PivotChartTest.cxx
index 549444511a45..bafec060c31e 100644
--- a/chart2/qa/extras/PivotChartTest.cxx
+++ b/chart2/qa/extras/PivotChartTest.cxx
@@ -389,7 +389,7 @@ void PivotChartTest::testChangePivotTable()
     xTablePivotCharts->addNewByName("Chart", awt::Rectangle{0, 0, 9000, 9000}, sPivotTableName);
     CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
 
-    // Get the pivot chart document so we ca access its data
+    // Get the pivot chart document so we can access its data
     xChartDoc.set(getPivotChartDocFromSheet(xTablePivotCharts, 0));
 
     CPPUNIT_ASSERT(xChartDoc.is());
@@ -574,7 +574,7 @@ void PivotChartTest::testPivotChartWithOneColumnField()
     xTablePivotCharts->addNewByName("PivotChart", awt::Rectangle{ 9000, 9000, 21000, 18000 }, sPivotTableName);
     CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
 
-    // Get the pivot chart document so we ca access its data
+    // Get the pivot chart document so we can access its data
     xChartDoc.set(getPivotChartDocFromSheet(xTablePivotCharts, 0));
 
     CPPUNIT_ASSERT(xChartDoc.is());
@@ -659,7 +659,7 @@ void PivotChartTest::testPivotChartWithOneRowField()
     xTablePivotCharts->addNewByName("PivotChart", awt::Rectangle{ 9000, 9000, 21000, 18000 }, sPivotTableName);
     CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
 
-    // Get the pivot chart document so we ca access its data
+    // Get the pivot chart document so we can access its data
     xChartDoc.set(getPivotChartDocFromSheet(xTablePivotCharts, 0));
 
     CPPUNIT_ASSERT(xChartDoc.is());
@@ -829,7 +829,7 @@ void PivotChartTest::testPivotChartRowFieldInOutlineMode()
     xTablePivotCharts->addNewByName("PivotChart", awt::Rectangle{ 9000, 9000, 21000, 18000 }, sPivotTableName);
     CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xIndexAccess->getCount());
 
-    // Get the pivot chart document so we ca access its data
+    // Get the pivot chart document so we can access its data
     xChartDoc.set(getPivotChartDocFromSheet(xTablePivotCharts, 0));
 
     CPPUNIT_ASSERT(xChartDoc.is());
diff --git a/dbaccess/source/core/dataaccess/connection.cxx b/dbaccess/source/core/dataaccess/connection.cxx
index 988d20182a68..7f21a8cebf11 100644
--- a/dbaccess/source/core/dataaccess/connection.cxx
+++ b/dbaccess/source/core/dataaccess/connection.cxx
@@ -310,7 +310,7 @@ OConnection::OConnection(ODatabaseSource& _rDB
         Reference< XNameContainer > xTableDefinitions(_rDB.getTables(),UNO_QUERY);
         m_pTables.reset( new OTableContainer( *this, m_aMutex, this, bCase, xTableDefinitions, this, m_nInAppend ) );
 
-        // check if we supports types
+        // check if we support types
         if ( xMeta.is() )
         {
             Reference<XResultSet> xRes = xMeta->getTableTypes();
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx
index a55d2be0d2de..32562da141e7 100644
--- a/dbaccess/source/ui/browser/sbagrid.cxx
+++ b/dbaccess/source/ui/browser/sbagrid.cxx
@@ -412,7 +412,7 @@ void SAL_CALL SbaXGridPeer::dispatch(const URL& aURL, const Sequence< PropertyVa
         // this saves us from keeping track of these events - as soon as the window dies,
         // the events are deleted automatically. For the application way, we would need to
         // do this ourself.
-        // As we use our grid as window, and the grid dies before we dy, this should be no problem.
+        // As we use our grid as window, and the grid dies before we die, this should be no problem.
         pGrid->PostUserEvent( LINK( this, SbaXGridPeer, OnDispatchEvent ) );
         return;
     }
diff --git a/dbaccess/source/ui/inc/TableConnection.hxx b/dbaccess/source/ui/inc/TableConnection.hxx
index 04759077eff8..73aa51d50749 100644
--- a/dbaccess/source/ui/inc/TableConnection.hxx
+++ b/dbaccess/source/ui/inc/TableConnection.hxx
@@ -77,7 +77,7 @@ namespace dbaui
         void RecalcLines();
         /** isTableConnection
 
-            @param  _pTable the table where we should check if we belongs to it
+            @param  _pTable the table where we should check if we belong to it
             @return true when the source or the destination window are equal
         */
         bool isTableConnection(const OTableWindow* _pTable)
diff --git a/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx b/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx
index cf4f425bb32f..26b14bbc6360 100644
--- a/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx
+++ b/desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx
@@ -249,7 +249,7 @@ void CommandEnvironmentImpl::handle(
     }
     else if (request >>= instExc)
     {
-        //Only if the unopgk was started with gui + extension then we user is asked.
+        //Only if the unopgk was started with gui + extension then the user is asked.
         //In console mode there is no asking.
         approve = true;
     }


More information about the Libreoffice-commits mailing list