[Libreoffice-commits] core.git: configure.ac connectivity/source cppuhelper/source cpputools/source cui/source

Andrea Gelmini andrea.gelmini at gelma.net
Sat Mar 25 16:17:47 UTC 2017


 configure.ac                                                   |    2 +-
 connectivity/source/commontools/parameters.cxx                 |    2 +-
 connectivity/source/drivers/firebird/Connection.hxx            |    2 +-
 connectivity/source/drivers/firebird/Tables.cxx                |    2 +-
 connectivity/source/drivers/hsqldb/HTable.cxx                  |    2 +-
 connectivity/source/drivers/kab/KDEInit.cxx                    |    2 +-
 connectivity/source/drivers/postgresql/pq_databasemetadata.cxx |    2 +-
 connectivity/source/inc/ado/ADatabaseMetaData.hxx              |    2 +-
 connectivity/source/inc/file/FNumericFunctions.hxx             |    2 +-
 cppuhelper/source/exc_thrower.cxx                              |    2 +-
 cpputools/source/unoexe/unoexe.cxx                             |    2 +-
 cui/source/options/optgenrl.cxx                                |    2 +-
 cui/source/tabpages/tphatch.cxx                                |    2 +-
 cui/source/tabpages/tptrans.cxx                                |    2 +-
 14 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit 7668d4e616dd37d3b335c43db897b64a7349047b
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Fri Mar 24 08:53:41 2017 +0100

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

diff --git a/configure.ac b/configure.ac
index 60ea0ead62b4..12ab4421f004 100644
--- a/configure.ac
+++ b/configure.ac
@@ -332,7 +332,7 @@ AC_SUBST(ENABLE_LTO)
 
 AC_ARG_ENABLE(fuzz-options,
     AS_HELP_STRING([--enable-fuzz-options],
-        [Randomly enable or disable each of those configury options
+        [Randomly enable or disable each of those configurable options
          that are supposed to be freely selectable without interdependencies,
          or where bad interaction from interdependencies is automatically avoided.])
 )
diff --git a/connectivity/source/commontools/parameters.cxx b/connectivity/source/commontools/parameters.cxx
index 2db8bb4e12a0..70e1883ff41f 100644
--- a/connectivity/source/commontools/parameters.cxx
+++ b/connectivity/source/commontools/parameters.cxx
@@ -250,7 +250,7 @@ namespace dbtools
             return;
 
         // we may need to strip any links which are invalid, so here go the containers
-        // for temporarirly holding the new pairs
+        // for temporarily holding the new pairs
         std::vector< OUString > aStrippedMasterFields;
         std::vector< OUString > aStrippedDetailFields;
 
diff --git a/connectivity/source/drivers/firebird/Connection.hxx b/connectivity/source/drivers/firebird/Connection.hxx
index 5e5c321d3646..43bccf9ab8f8 100644
--- a/connectivity/source/drivers/firebird/Connection.hxx
+++ b/connectivity/source/drivers/firebird/Connection.hxx
@@ -162,7 +162,7 @@ namespace connectivity
             /**
              * Creates a new transaction with the desired parameters, if
              * necessary discarding an existing transaction. This has to be done
-             * anytime we change the transaction isolation, or autocommiting.
+             * anytime we change the transaction isolation, or autocommitting.
              *
              * @throws css::sdbc::SQLException
              */
diff --git a/connectivity/source/drivers/firebird/Tables.cxx b/connectivity/source/drivers/firebird/Tables.cxx
index bc21f08dac56..48313c60805b 100644
--- a/connectivity/source/drivers/firebird/Tables.cxx
+++ b/connectivity/source/drivers/firebird/Tables.cxx
@@ -98,7 +98,7 @@ OUString Tables::createStandardColumnPart(const Reference< XPropertySet >& xColP
         aSql.append(" ");
         aSql.append(sAutoIncrementValue);
     }
-    // AutoIncrementive "IDENTITY" is implizit "NOT NULL"
+    // AutoIncrement "IDENTITY" is implicitly "NOT NULL"
     else if(::comphelper::getINT32(xColProp->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_ISNULLABLE))) == ColumnValue::NO_NULLS)
         aSql.append(" NOT NULL");
 
diff --git a/connectivity/source/drivers/hsqldb/HTable.cxx b/connectivity/source/drivers/hsqldb/HTable.cxx
index af99e0e5b467..6ce97cd11b5e 100644
--- a/connectivity/source/drivers/hsqldb/HTable.cxx
+++ b/connectivity/source/drivers/hsqldb/HTable.cxx
@@ -183,7 +183,7 @@ void SAL_CALL OHSQLTable::alterColumnByName( const OUString& colName, const Refe
         xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_TYPENAME))     >>= sOldTypeName;
         descriptor->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_TYPENAME))>>= sNewTypeName;
 
-        // and precsions and scale
+        // and precision and scale
         xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_PRECISION))    >>= nOldPrec;
         descriptor->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_PRECISION))>>= nNewPrec;
         xProp->getPropertyValue(rProp.getNameByIndex(PROPERTY_ID_SCALE))        >>= nOldScale;
diff --git a/connectivity/source/drivers/kab/KDEInit.cxx b/connectivity/source/drivers/kab/KDEInit.cxx
index c5ace044937c..2d31339b6545 100644
--- a/connectivity/source/drivers/kab/KDEInit.cxx
+++ b/connectivity/source/drivers/kab/KDEInit.cxx
@@ -125,7 +125,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT void SAL_CALL shutdownKApplication()
     has to be called, else the results are unpredictable.
 
     @return
-        <ul><li><code>0</code> if the KDE version is supportednon</li>
+        <ul><li><code>0</code> if the KDE version is not supported</li>
             <li>a negative value if the version is too old</li>
             <li>a positive value if the version is too new to know whether it works with this driver</li>
         </ul>
diff --git a/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx b/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx
index 43693302452d..eab6b50e0ace 100644
--- a/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx
+++ b/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx
@@ -106,7 +106,7 @@ namespace pq_sdbc_driver
 // These are inherited from JDBC, and thus won't change anytime soon.
 // Having them as pre-processor definitions allows to include them
 // into compile-time strings (through STRINGIFY), which can be passed to ASCII_STR.
-// That is without resorting to horrendeous hacks in template meta-programming.
+// That is without resorting to horrendous hacks in template meta-programming.
 #define KEYRULE_CASCADE      0
 #define KEYRULE_RESTRICT     1
 #define KEYRULE_SET_NULL     2
diff --git a/connectivity/source/inc/ado/ADatabaseMetaData.hxx b/connectivity/source/inc/ado/ADatabaseMetaData.hxx
index e8ebb65b844b..9acb10561e8b 100644
--- a/connectivity/source/inc/ado/ADatabaseMetaData.hxx
+++ b/connectivity/source/inc/ado/ADatabaseMetaData.hxx
@@ -52,7 +52,7 @@ namespace connectivity
             bool isCapable(sal_uInt32 _nId);
             OUString getLiteral(sal_uInt32 _nProperty);
 
-            // get info out of propertyst
+            // get info out of properties
             /// @throws css::sdbc::SQLException
             /// @throws css::uno::RuntimeException
             OUString getStringProperty(const OUString& _aProperty);
diff --git a/connectivity/source/inc/file/FNumericFunctions.hxx b/connectivity/source/inc/file/FNumericFunctions.hxx
index 79592c14b012..6d37df610e79 100644
--- a/connectivity/source/inc/file/FNumericFunctions.hxx
+++ b/connectivity/source/inc/file/FNumericFunctions.hxx
@@ -227,7 +227,7 @@ namespace connectivity
         };
 
         /** PI()
-            Returns the value of PI. The default shown number of decimals is 5, but  internally uses the full double precession for PI.
+            Returns the value of PI. The default shown number of decimals is 5, but  internally uses the full double precision for PI.
 
         > SELECT PI();
                 -> 3.141593
diff --git a/cppuhelper/source/exc_thrower.cxx b/cppuhelper/source/exc_thrower.cxx
index a49f3aa1d52c..8bd5084c7e8c 100644
--- a/cppuhelper/source/exc_thrower.cxx
+++ b/cppuhelper/source/exc_thrower.cxx
@@ -81,7 +81,7 @@ void SAL_CALL ExceptionThrower_dispatch(
                 const_cast< typelib_TypeDescription * >( pMemberType ) )->
             nPosition)
     {
-    case 0: // queryInterace()
+    case 0: // queryInterface()
     {
         Type const & rType_demanded =
             *static_cast< Type const * >( pArgs[ 0 ] );
diff --git a/cpputools/source/unoexe/unoexe.cxx b/cpputools/source/unoexe/unoexe.cxx
index e89044296d6e..dc7cb5d8cabc 100644
--- a/cpputools/source/unoexe/unoexe.cxx
+++ b/cpputools/source/unoexe/unoexe.cxx
@@ -204,7 +204,7 @@ static Reference< XInterface > loadComponent(
                 Reference< XSingleServiceFactory > xSFac( xFactory, UNO_QUERY );
                 if (xSFac.is())
                 {
-                    out( "\n> warning: ignroing context for implementation \"" );
+                    out( "\n> warning: ignoring context for implementation \"" );
                     out( rImplName );
                     out( "\"!" );
                     xInstance = xSFac->createInstance();
diff --git a/cui/source/options/optgenrl.cxx b/cui/source/options/optgenrl.cxx
index d7cffba028cf..1b110fd30963 100644
--- a/cui/source/options/optgenrl.cxx
+++ b/cui/source/options/optgenrl.cxx
@@ -176,7 +176,7 @@ public:
         //We want all widgets inside a container, so each row of the toplevel
         //grid has another container in it. To avoid adding spacing to these
         //empty grids they all default to invisible, so show them if their
-        //children are visibles
+        //children are visible
         pEdit->GetParent()->Show();
         pEdit->Show();
     }
diff --git a/cui/source/tabpages/tphatch.cxx b/cui/source/tabpages/tphatch.cxx
index d5d115d2449f..3c0c382e3e7b 100644
--- a/cui/source/tabpages/tphatch.cxx
+++ b/cui/source/tabpages/tphatch.cxx
@@ -259,7 +259,7 @@ bool SvxHatchTabPage::FillItemSet( SfxItemSet* rSet )
         pXHatch.reset(new XHatch( m_pHatchingList->GetHatch( static_cast<sal_uInt16>(nPos) )->GetHatch() ));
         aString = m_pHatchLB->GetItemText( m_pHatchLB->GetSelectItemId() );
     }
-    // gradient has been (unidentifiedly) passed
+    // gradient has been (unidentified) passed
     else
     {
         pXHatch.reset(new XHatch( m_pLbLineColor->GetSelectEntryColor(),
diff --git a/cui/source/tabpages/tptrans.cxx b/cui/source/tabpages/tptrans.cxx
index 2fbcc37a371e..90cea669a8a8 100644
--- a/cui/source/tabpages/tptrans.cxx
+++ b/cui/source/tabpages/tptrans.cxx
@@ -498,7 +498,7 @@ void SvxTransparenceTabPage::PointChanged(vcl::Window* , RectPoint eRcPt)
 
 bool SvxTransparenceTabPage::InitPreview ( const SfxItemSet& rSet )
 {
-    // set transparencetyp for preview
+    // set transparencetype for preview
     if ( m_pRbtTransOff->IsChecked() )
     {
         ClickTransOffHdl_Impl(nullptr);


More information about the Libreoffice-commits mailing list