From a6060e02f7f8c1966e5f54bbe186a445a74942e7 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 12 Jul 2016 15:57:36 +0200 Subject: Fix typo relase_ChildImpl -> release_ChildImpl Change-Id: I68faf8cfb8eb390e7970383b8a6596a9dd3f95f7 --- mysqlc/source/mysqlc_connection.cxx | 2 +- mysqlc/source/mysqlc_statement.cxx | 2 +- mysqlc/source/mysqlc_subcomponent.hxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'mysqlc') diff --git a/mysqlc/source/mysqlc_connection.cxx b/mysqlc/source/mysqlc_connection.cxx index 3534ab208a36..4afced00bf56 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 637b81bc7da7..ffa96ef99255 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 f0cc68a4e6d5..384eeeec923c 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, -- cgit