diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-07 14:49:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-08 08:27:22 +0200 |
commit | c1692639bcee2f3b0b0f03347f8743b8a7307300 (patch) | |
tree | c737f528dbfbaf67e59bc7cb32d98ad65375eb93 /ucbhelper | |
parent | 469e577852fd41655169cbb05fc610bd36a1e51a (diff) |
use cppu::WeakImplHelper in ResultSetImplHelper
Change-Id: If82ae3f5cee0ae893fd32ecafe3c7baf7ec00ed4
Reviewed-on: https://gerrit.libreoffice.org/80408
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/resultsethelper.cxx | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/ucbhelper/source/provider/resultsethelper.cxx b/ucbhelper/source/provider/resultsethelper.cxx index 279bbc4deb84..e9c97dff46e7 100644 --- a/ucbhelper/source/provider/resultsethelper.cxx +++ b/ucbhelper/source/provider/resultsethelper.cxx @@ -65,39 +65,6 @@ ResultSetImplHelper::~ResultSetImplHelper() } -// XInterface methods. -void SAL_CALL ResultSetImplHelper::acquire() - throw() -{ - OWeakObject::acquire(); -} - -void SAL_CALL ResultSetImplHelper::release() - throw() -{ - OWeakObject::release(); -} - -css::uno::Any SAL_CALL ResultSetImplHelper::queryInterface( const css::uno::Type & rType ) -{ - css::uno::Any aRet = cppu::queryInterface( rType, - static_cast< lang::XTypeProvider* >(this), - static_cast< lang::XServiceInfo* >(this), - static_cast< lang::XComponent* >(this), - static_cast< css::ucb::XDynamicResultSet* >(this) - ); - return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); -} - -// XTypeProvider methods. - - -XTYPEPROVIDER_IMPL_3( ResultSetImplHelper, - lang::XTypeProvider, - lang::XServiceInfo, - css::ucb::XDynamicResultSet ); - - // XServiceInfo methods. OUString SAL_CALL ResultSetImplHelper::getImplementationName() |