diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-07-12 15:57:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-12 15:57:36 +0200 |
commit | a6060e02f7f8c1966e5f54bbe186a445a74942e7 (patch) | |
tree | 8470b22058db0c7427fc782543aa68abe90d5508 /odk | |
parent | 9624bde1c36a3c1b86d8d88f97bc729ac4d65853 (diff) |
Fix typo relase_ChildImpl -> release_ChildImpl
Change-Id: I68faf8cfb8eb390e7970383b8a6596a9dd3f95f7
Diffstat (limited to 'odk')
3 files changed, 3 insertions, 3 deletions
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/OSubComponent.hxx index a2bb24861083..3aa08f12a1af 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 acafdb3bc84c..860a907bcec9 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 e34bf082187e..edb5e6a2b3dd 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) |