summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-07 14:42:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-08 08:26:42 +0200
commit850abad67bc05f823bc3975367b33ec67449b5c5 (patch)
tree7816d9d528c1872421ec6274d00c6df05365d544 /ucbhelper
parentaca7ea6b0082fe991d8430ee42c4172eae7f7849 (diff)
use cppu::WeakImplHelper in PropertyValueSet
Change-Id: I48b0292207a88234290ffc9a3ca5585ee9b924e3 Reviewed-on: https://gerrit.libreoffice.org/80405 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/source/provider/propertyvalueset.cxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/ucbhelper/source/provider/propertyvalueset.cxx b/ucbhelper/source/provider/propertyvalueset.cxx
index 32fabcff3b58..e1be42d2a39d 100644
--- a/ucbhelper/source/provider/propertyvalueset.cxx
+++ b/ucbhelper/source/provider/propertyvalueset.cxx
@@ -153,38 +153,6 @@ PropertyValueSet::~PropertyValueSet()
}
-// XInterface methods.
-void SAL_CALL PropertyValueSet::acquire()
- throw()
-{
- OWeakObject::acquire();
-}
-
-void SAL_CALL PropertyValueSet::release()
- throw()
-{
- OWeakObject::release();
-}
-
-css::uno::Any SAL_CALL PropertyValueSet::queryInterface( const css::uno::Type & rType )
-{
- css::uno::Any aRet = cppu::queryInterface( rType,
- static_cast< XTypeProvider* >(this),
- static_cast< XRow* >(this),
- static_cast< XColumnLocate* >(this)
- );
- return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
-}
-
-// XTypeProvider methods.
-
-
-XTYPEPROVIDER_IMPL_3( PropertyValueSet,
- XTypeProvider,
- XRow,
- XColumnLocate );
-
-
// XRow methods.