diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-02 12:24:24 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-02 12:39:35 +0000 |
commit | 5bea199bae9986d7276a9b2379a577c6cea552ed (patch) | |
tree | cd9b75f7cb39b29a7a27244da2a187c224320613 /mysqlc/source | |
parent | 51d996354f11048d7759cd7e206a2383421c2c81 (diff) |
Fix typos
Change-Id: Ic6c41fbcc36c11a7528cde0986593a39c2d6738b
Reviewed-on: https://gerrit.libreoffice.org/34803
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'mysqlc/source')
-rw-r--r-- | mysqlc/source/mysqlc_connection.cxx | 2 | ||||
-rw-r--r-- | mysqlc/source/mysqlc_driver.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysqlc/source/mysqlc_connection.cxx b/mysqlc/source/mysqlc_connection.cxx index 8732d9d32f97..5f082310b7c7 100644 --- a/mysqlc/source/mysqlc_connection.cxx +++ b/mysqlc/source/mysqlc_connection.cxx @@ -495,7 +495,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 MutexGuard aGuard(m_aMutex); for (OWeakRefArray::iterator i = m_aStatements.begin(); i != m_aStatements.end() ; ++i) { diff --git a/mysqlc/source/mysqlc_driver.cxx b/mysqlc/source/mysqlc_driver.cxx index 02d0184f83ef..319fc963cc39 100644 --- a/mysqlc/source/mysqlc_driver.cxx +++ b/mysqlc/source/mysqlc_driver.cxx @@ -56,7 +56,7 @@ void MysqlCDriver::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); |