summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-03-02 17:56:40 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-03 07:42:39 +0000
commit6fab286b2a213575e3b1ccd0eddb00c8b242af00 (patch)
tree390e09b20192f829524e9975ba4b36ca47cb2975 /connectivity
parentba48819e9f01466b4048528f5aded766a5f11e8a (diff)
Fix typos
Change-Id: I4f16ba5fc32cbfd6a5b01e495f3ad905da193524 Reviewed-on: https://gerrit.libreoffice.org/34808 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/evoab2/NDriver.cxx2
-rw-r--r--connectivity/source/drivers/kab/KConnection.cxx2
-rw-r--r--connectivity/source/drivers/kab/KDriver.cxx2
-rw-r--r--connectivity/source/drivers/macab/MacabConnection.cxx2
-rw-r--r--connectivity/source/drivers/macab/MacabDriver.cxx2
-rw-r--r--connectivity/source/drivers/mork/MConnection.cxx2
-rw-r--r--connectivity/source/inc/hsqldb/HDriver.hxx2
-rw-r--r--connectivity/source/inc/mysql/YDriver.hxx2
-rw-r--r--connectivity/source/inc/odbc/OConnection.hxx2
-rw-r--r--connectivity/source/parse/sqliterator.cxx2
10 files changed, 10 insertions, 10 deletions
diff --git a/connectivity/source/drivers/evoab2/NDriver.cxx b/connectivity/source/drivers/evoab2/NDriver.cxx
index bc98a3f18fb3..661071b3c773 100644
--- a/connectivity/source/drivers/evoab2/NDriver.cxx
+++ b/connectivity/source/drivers/evoab2/NDriver.cxx
@@ -55,7 +55,7 @@ void OEvoabDriver::disposing()
{
::osl::MutexGuard aGuard(m_aMutex);
- // when driver will be destroied so all our connections have to be destroied as well
+ // when driver will be destroyed so all our connections have to be destroyed as well
for (OWeakRefArray::iterator i = m_xConnections.begin(); m_xConnections.end() != i; ++i)
{
Reference< XComponent > xComp(i->get(), UNO_QUERY);
diff --git a/connectivity/source/drivers/kab/KConnection.cxx b/connectivity/source/drivers/kab/KConnection.cxx
index d7945bb7d88b..0d54a1428872 100644
--- a/connectivity/source/drivers/kab/KConnection.cxx
+++ b/connectivity/source/drivers/kab/KConnection.cxx
@@ -263,7 +263,7 @@ void SAL_CALL KabConnection::clearWarnings( )
void KabConnection::disposing()
{
- // we noticed that we should be destroied in near future so we have to dispose our statements
+ // we noticed that we should be destroyed in near future so we have to dispose our statements
::osl::MutexGuard aGuard(m_aMutex);
for (OWeakRefArray::iterator i = m_aStatements.begin(); m_aStatements.end() != i; ++i)
diff --git a/connectivity/source/drivers/kab/KDriver.cxx b/connectivity/source/drivers/kab/KDriver.cxx
index d169d66ff7b1..9de3b8752e46 100644
--- a/connectivity/source/drivers/kab/KDriver.cxx
+++ b/connectivity/source/drivers/kab/KDriver.cxx
@@ -347,7 +347,7 @@ void KabDriver::disposing()
{
::osl::MutexGuard aGuard(m_aMutex);
- // when driver will be destroied so all our connections have to be destroied as well
+ // when driver will be destroyed so all our connections have to be destroyed as well
for (OWeakRefArray::iterator i = m_xConnections.begin(); m_xConnections.end() != i; ++i)
{
Reference< XComponent > xComp(i->get(), UNO_QUERY);
diff --git a/connectivity/source/drivers/macab/MacabConnection.cxx b/connectivity/source/drivers/macab/MacabConnection.cxx
index b966538b15e4..1425e3e55b63 100644
--- a/connectivity/source/drivers/macab/MacabConnection.cxx
+++ b/connectivity/source/drivers/macab/MacabConnection.cxx
@@ -262,7 +262,7 @@ void SAL_CALL MacabConnection::clearWarnings( )
void MacabConnection::disposing()
{
- // we noticed that we should be destroied in near future so we have to dispose our statements
+ // we noticed that we should be destroyed in near future so we have to dispose our statements
::osl::MutexGuard aGuard(m_aMutex);
for (OWeakRefArray::iterator i = m_aStatements.begin(); m_aStatements.end() != i; ++i)
diff --git a/connectivity/source/drivers/macab/MacabDriver.cxx b/connectivity/source/drivers/macab/MacabDriver.cxx
index 3b64c4c5c1e3..2c87a2fff73f 100644
--- a/connectivity/source/drivers/macab/MacabDriver.cxx
+++ b/connectivity/source/drivers/macab/MacabDriver.cxx
@@ -202,7 +202,7 @@ void MacabDriver::disposing()
{
::osl::MutexGuard aGuard(m_aMutex);
- // when driver will be destroied so all our connections have to be destroied as well
+ // when driver will be destroyed so all our connections have to be destroyed as well
for (OWeakRefArray::iterator i = m_xConnections.begin(); m_xConnections.end() != i; ++i)
{
Reference< XComponent > xComp(i->get(), UNO_QUERY);
diff --git a/connectivity/source/drivers/mork/MConnection.cxx b/connectivity/source/drivers/mork/MConnection.cxx
index 3dd4b2bef429..b11808da879a 100644
--- a/connectivity/source/drivers/mork/MConnection.cxx
+++ b/connectivity/source/drivers/mork/MConnection.cxx
@@ -349,7 +349,7 @@ void SAL_CALL OConnection::clearWarnings( )
void OConnection::disposing()
{
- // we noticed that we should be destroied in near future so we have to dispose our statements
+ // we noticed that we should be destroyed in near future so we have to dispose our statements
::osl::MutexGuard aGuard(m_aMutex);
dispose_ChildImpl();
m_xCatalog.clear();
diff --git a/connectivity/source/inc/hsqldb/HDriver.hxx b/connectivity/source/inc/hsqldb/HDriver.hxx
index 6a9957c1499b..364a6dbb5e45 100644
--- a/connectivity/source/inc/hsqldb/HDriver.hxx
+++ b/connectivity/source/inc/hsqldb/HDriver.hxx
@@ -55,7 +55,7 @@ namespace connectivity
typedef std::vector< TWeakPair > TWeakPairVector;
- /** delegates all calls to the orignal driver and extend the existing one with the SDBCX layer.
+ /** delegates all calls to the original driver and extend the existing one with the SDBCX layer.
*/
class ODriverDelegator : public ::cppu::BaseMutex
diff --git a/connectivity/source/inc/mysql/YDriver.hxx b/connectivity/source/inc/mysql/YDriver.hxx
index 159ed9931d10..23b9f89fb961 100644
--- a/connectivity/source/inc/mysql/YDriver.hxx
+++ b/connectivity/source/inc/mysql/YDriver.hxx
@@ -55,7 +55,7 @@ namespace connectivity
typedef std::vector< TWeakPair > TWeakPairVector;
typedef std::map< OUString, css::uno::Reference< css::sdbc::XDriver > > TJDBCDrivers;
- /** delegates all calls to the orignal driver and extend the existing one with the SDBCX layer.
+ /** delegates all calls to the original driver and extend the existing one with the SDBCX layer.
*/
class ODriverDelegator : public ::cppu::BaseMutex
diff --git a/connectivity/source/inc/odbc/OConnection.hxx b/connectivity/source/inc/odbc/OConnection.hxx
index 73610e45afdc..1c33aca85cd5 100644
--- a/connectivity/source/inc/odbc/OConnection.hxx
+++ b/connectivity/source/inc/odbc/OConnection.hxx
@@ -55,7 +55,7 @@ namespace connectivity
// Data attributes
- std::map< SQLHANDLE,OConnection*> m_aConnections; // holds all connections which are need for serveral statements
+ std::map< SQLHANDLE,OConnection*> m_aConnections; // holds all connections which are need for several statements
OUString m_sUser; // the user name
diff --git a/connectivity/source/parse/sqliterator.cxx b/connectivity/source/parse/sqliterator.cxx
index 1cffcd3d0f55..1b2e9575035a 100644
--- a/connectivity/source/parse/sqliterator.cxx
+++ b/connectivity/source/parse/sqliterator.cxx
@@ -447,7 +447,7 @@ void OSQLParseTreeIterator::traverseOneTableName( OSQLTables& _rTables,const OSQ
false,
::dbtools::EComposeRule::InDataManipulation);
- // if there is no alias for the table name assign the orignal name to it
+ // if there is no alias for the table name assign the original name to it
if ( aTableRange.isEmpty() )
aTableRange = aComposedName;