[Libreoffice-commits] core.git: compilerplugins/clang connectivity/source include/connectivity mysqlc/source odk/examples
Stephan Bergmann
sbergman at redhat.com
Tue Jul 12 13:58:05 UTC 2016
compilerplugins/clang/weakobject.cxx | 2 +-
connectivity/source/drivers/ado/AConnection.cxx | 2 +-
connectivity/source/drivers/ado/AStatement.cxx | 2 +-
connectivity/source/drivers/evoab2/NConnection.cxx | 2 +-
connectivity/source/drivers/evoab2/NStatement.cxx | 2 +-
connectivity/source/drivers/file/FConnection.cxx | 2 +-
connectivity/source/drivers/file/FStatement.cxx | 2 +-
connectivity/source/drivers/firebird/Connection.cxx | 2 +-
connectivity/source/drivers/jdbc/JConnection.cxx | 2 +-
connectivity/source/drivers/jdbc/JStatement.cxx | 2 +-
connectivity/source/drivers/kab/KConnection.cxx | 2 +-
connectivity/source/drivers/macab/MacabConnection.cxx | 2 +-
connectivity/source/drivers/mork/MConnection.cxx | 2 +-
connectivity/source/drivers/mork/MStatement.cxx | 2 +-
connectivity/source/drivers/odbc/OConnection.cxx | 2 +-
connectivity/source/drivers/odbc/OStatement.cxx | 2 +-
connectivity/source/sdbcx/VCatalog.cxx | 2 +-
include/connectivity/OSubComponent.hxx | 2 +-
mysqlc/source/mysqlc_connection.cxx | 2 +-
mysqlc/source/mysqlc_statement.cxx | 2 +-
mysqlc/source/mysqlc_subcomponent.hxx | 2 +-
odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx | 2 +-
odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx | 2 +-
odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx | 2 +-
24 files changed, 24 insertions(+), 24 deletions(-)
New commits:
commit a6060e02f7f8c1966e5f54bbe186a445a74942e7
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Jul 12 15:57:36 2016 +0200
Fix typo relase_ChildImpl -> release_ChildImpl
Change-Id: I68faf8cfb8eb390e7970383b8a6596a9dd3f95f7
diff --git a/compilerplugins/clang/weakobject.cxx b/compilerplugins/clang/weakobject.cxx
index a148da0..7c36f93 100644
--- a/compilerplugins/clang/weakobject.cxx
+++ b/compilerplugins/clang/weakobject.cxx
@@ -123,7 +123,7 @@ public:
return true;
}
}
- else if (pCalled->getName() == "relase_ChildImpl") // FIXME remove this lunacy
+ else if (pCalled->getName() == "release_ChildImpl") // FIXME remove this lunacy
{
return true;
}
diff --git a/connectivity/source/drivers/ado/AConnection.cxx b/connectivity/source/drivers/ado/AConnection.cxx
index 45a0dfd..cc94d95 100644
--- a/connectivity/source/drivers/ado/AConnection.cxx
+++ b/connectivity/source/drivers/ado/AConnection.cxx
@@ -158,7 +158,7 @@ void OConnection::construct(const OUString& url,const Sequence< PropertyValue >&
void SAL_CALL OConnection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
Reference< XStatement > SAL_CALL OConnection::createStatement( ) throw(SQLException, RuntimeException)
diff --git a/connectivity/source/drivers/ado/AStatement.cxx b/connectivity/source/drivers/ado/AStatement.cxx
index e067254..aaeda5b 100644
--- a/connectivity/source/drivers/ado/AStatement.cxx
+++ b/connectivity/source/drivers/ado/AStatement.cxx
@@ -110,7 +110,7 @@ void OStatement_Base::disposing()
void SAL_CALL OStatement_Base::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
Any SAL_CALL OStatement_Base::queryInterface( const Type & rType ) throw(RuntimeException)
diff --git a/connectivity/source/drivers/evoab2/NConnection.cxx b/connectivity/source/drivers/evoab2/NConnection.cxx
index d3bcb54..9d21a97 100644
--- a/connectivity/source/drivers/evoab2/NConnection.cxx
+++ b/connectivity/source/drivers/evoab2/NConnection.cxx
@@ -61,7 +61,7 @@ OEvoabConnection::~OEvoabConnection()
void SAL_CALL OEvoabConnection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
// XServiceInfo
diff --git a/connectivity/source/drivers/evoab2/NStatement.cxx b/connectivity/source/drivers/evoab2/NStatement.cxx
index 0731d0d..aec05c3 100644
--- a/connectivity/source/drivers/evoab2/NStatement.cxx
+++ b/connectivity/source/drivers/evoab2/NStatement.cxx
@@ -537,7 +537,7 @@ void SAL_CALL OCommonStatement::acquire() throw()
void SAL_CALL OCommonStatement::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
diff --git a/connectivity/source/drivers/file/FConnection.cxx b/connectivity/source/drivers/file/FConnection.cxx
index 6424a25..745c112 100644
--- a/connectivity/source/drivers/file/FConnection.cxx
+++ b/connectivity/source/drivers/file/FConnection.cxx
@@ -77,7 +77,7 @@ OConnection::~OConnection()
void SAL_CALL OConnection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
diff --git a/connectivity/source/drivers/file/FStatement.cxx b/connectivity/source/drivers/file/FStatement.cxx
index 002f5fd..a4dc41d 100644
--- a/connectivity/source/drivers/file/FStatement.cxx
+++ b/connectivity/source/drivers/file/FStatement.cxx
@@ -140,7 +140,7 @@ void SAL_CALL OStatement_Base::acquire() throw()
void SAL_CALL OStatement_BASE2::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
Any SAL_CALL OStatement_Base::queryInterface( const Type & rType ) throw(RuntimeException, std::exception)
diff --git a/connectivity/source/drivers/firebird/Connection.cxx b/connectivity/source/drivers/firebird/Connection.cxx
index 61e9836..33cc2c5 100644
--- a/connectivity/source/drivers/firebird/Connection.cxx
+++ b/connectivity/source/drivers/firebird/Connection.cxx
@@ -110,7 +110,7 @@ Connection::~Connection()
void SAL_CALL Connection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
struct ConnectionGuard
diff --git a/connectivity/source/drivers/jdbc/JConnection.cxx b/connectivity/source/drivers/jdbc/JConnection.cxx
index 0e8e06e..76450d8 100644
--- a/connectivity/source/drivers/jdbc/JConnection.cxx
+++ b/connectivity/source/drivers/jdbc/JConnection.cxx
@@ -294,7 +294,7 @@ java_sql_Connection::~java_sql_Connection()
void SAL_CALL java_sql_Connection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
void java_sql_Connection::disposing()
diff --git a/connectivity/source/drivers/jdbc/JStatement.cxx b/connectivity/source/drivers/jdbc/JStatement.cxx
index 533641d..bf405a5 100644
--- a/connectivity/source/drivers/jdbc/JStatement.cxx
+++ b/connectivity/source/drivers/jdbc/JStatement.cxx
@@ -111,7 +111,7 @@ void SAL_CALL java_sql_Statement_Base::disposing()
void SAL_CALL OStatement_BASE2::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
diff --git a/connectivity/source/drivers/kab/KConnection.cxx b/connectivity/source/drivers/kab/KConnection.cxx
index b3e262e..8d65407 100644
--- a/connectivity/source/drivers/kab/KConnection.cxx
+++ b/connectivity/source/drivers/kab/KConnection.cxx
@@ -54,7 +54,7 @@ KabConnection::~KabConnection()
void SAL_CALL KabConnection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
//TODO: is doing this after the ctor, and the manual ref counting really
diff --git a/connectivity/source/drivers/macab/MacabConnection.cxx b/connectivity/source/drivers/macab/MacabConnection.cxx
index 7880fa4..7b1d8df 100644
--- a/connectivity/source/drivers/macab/MacabConnection.cxx
+++ b/connectivity/source/drivers/macab/MacabConnection.cxx
@@ -56,7 +56,7 @@ MacabConnection::~MacabConnection()
void SAL_CALL MacabConnection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
void MacabConnection::construct(const OUString&, const Sequence< PropertyValue >&) throw(SQLException)
diff --git a/connectivity/source/drivers/mork/MConnection.cxx b/connectivity/source/drivers/mork/MConnection.cxx
index d0caa2e..8fbcb75 100644
--- a/connectivity/source/drivers/mork/MConnection.cxx
+++ b/connectivity/source/drivers/mork/MConnection.cxx
@@ -57,7 +57,7 @@ OConnection::~OConnection()
void SAL_CALL OConnection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
diff --git a/connectivity/source/drivers/mork/MStatement.cxx b/connectivity/source/drivers/mork/MStatement.cxx
index 1a12d4b..f74e2e1 100644
--- a/connectivity/source/drivers/mork/MStatement.cxx
+++ b/connectivity/source/drivers/mork/MStatement.cxx
@@ -400,7 +400,7 @@ void SAL_CALL OCommonStatement::acquire() throw()
void SAL_CALL OCommonStatement::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
void SAL_CALL OStatement::acquire() throw()
diff --git a/connectivity/source/drivers/odbc/OConnection.cxx b/connectivity/source/drivers/odbc/OConnection.cxx
index 7b228fd..ea3b1de 100644
--- a/connectivity/source/drivers/odbc/OConnection.cxx
+++ b/connectivity/source/drivers/odbc/OConnection.cxx
@@ -86,7 +86,7 @@ OConnection::~OConnection()
void SAL_CALL OConnection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
oslGenericFunction OConnection::getOdbcFunction(ODBC3SQLFunctionId _nIndex) const
diff --git a/connectivity/source/drivers/odbc/OStatement.cxx b/connectivity/source/drivers/odbc/OStatement.cxx
index 1e8fbaa..8b2aad8 100644
--- a/connectivity/source/drivers/odbc/OStatement.cxx
+++ b/connectivity/source/drivers/odbc/OStatement.cxx
@@ -120,7 +120,7 @@ void OStatement_BASE2::disposing()
void SAL_CALL OStatement_BASE2::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
Any SAL_CALL OStatement_Base::queryInterface( const Type & rType ) throw(RuntimeException, std::exception)
diff --git a/connectivity/source/sdbcx/VCatalog.cxx b/connectivity/source/sdbcx/VCatalog.cxx
index 459ee22..87ec5f1 100644
--- a/connectivity/source/sdbcx/VCatalog.cxx
+++ b/connectivity/source/sdbcx/VCatalog.cxx
@@ -68,7 +68,7 @@ void SAL_CALL OCatalog::acquire() throw()
void SAL_CALL OCatalog::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
diff --git a/include/connectivity/OSubComponent.hxx b/include/connectivity/OSubComponent.hxx
index 1955c54..0ee4e12 100644
--- a/include/connectivity/OSubComponent.hxx
+++ b/include/connectivity/OSubComponent.hxx
@@ -70,7 +70,7 @@ namespace connectivity
::osl::MutexGuard aGuard( m_pDerivedImplementation->WEAK::rBHelper.rMutex );
m_xParent.clear();
}
- void relase_ChildImpl() throw ()
+ void release_ChildImpl() throw ()
{
#if 0
::connectivity::release(m_pDerivedImplementation->m_refCount,
diff --git a/mysqlc/source/mysqlc_connection.cxx b/mysqlc/source/mysqlc_connection.cxx
index 3534ab2..4afced0 100644
--- a/mysqlc/source/mysqlc_connection.cxx
+++ b/mysqlc/source/mysqlc_connection.cxx
@@ -86,7 +86,7 @@ void SAL_CALL OConnection::release()
throw()
{
OSL_TRACE("OConnection::release");
- relase_ChildImpl();
+ release_ChildImpl();
}
void OConnection::construct(const rtl::OUString& url, const Sequence< PropertyValue >& info)
diff --git a/mysqlc/source/mysqlc_statement.cxx b/mysqlc/source/mysqlc_statement.cxx
index 637b81b..ffa96ef 100644
--- a/mysqlc/source/mysqlc_statement.cxx
+++ b/mysqlc/source/mysqlc_statement.cxx
@@ -414,7 +414,7 @@ void SAL_CALL OCommonStatement::release()
throw()
{
OSL_TRACE("OCommonStatement::release");
- relase_ChildImpl();
+ release_ChildImpl();
}
void SAL_CALL OStatement::acquire()
diff --git a/mysqlc/source/mysqlc_subcomponent.hxx b/mysqlc/source/mysqlc_subcomponent.hxx
index f0cc68a..384eeee 100644
--- a/mysqlc/source/mysqlc_subcomponent.hxx
+++ b/mysqlc/source/mysqlc_subcomponent.hxx
@@ -79,7 +79,7 @@ namespace connectivity
::osl::MutexGuard aGuard(m_pDerivedImplementation->rBHelper.rMutex);
m_xParent = nullptr;
}
- void relase_ChildImpl()
+ void release_ChildImpl()
{
release(m_pDerivedImplementation->m_refCount,
m_pDerivedImplementation->rBHelper,
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx
index a2bb248..3aa08f1 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx
@@ -96,7 +96,7 @@ namespace connectivity
::osl::MutexGuard aGuard( m_pDerivedImplementation->rBHelper.rMutex );
m_xParent = NULL;
}
- void relase_ChildImpl()
+ void release_ChildImpl()
{
release(m_pDerivedImplementation->m_refCount,
m_pDerivedImplementation->rBHelper,
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
index acafdb3..860a907 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx
@@ -74,7 +74,7 @@ OConnection::~OConnection()
void SAL_CALL OConnection::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
index e34bf08..edb5e6a 100644
--- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
+++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SStatement.cxx
@@ -96,7 +96,7 @@ void OStatement_BASE2::disposing()
void SAL_CALL OStatement_BASE2::release() throw()
{
- relase_ChildImpl();
+ release_ChildImpl();
}
Any SAL_CALL OStatement_Base::queryInterface( const Type & rType ) throw(RuntimeException)
More information about the Libreoffice-commits
mailing list