summaryrefslogtreecommitdiff
path: root/stoc/source/proxy_factory/proxyfac.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-02 11:15:56 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-02 11:15:56 +0100
commitad91fa995e0af5f0191ee327fe936160081bbf05 (patch)
treeb24c4c267ccb1813e988f29097353043b2cbdce3 /stoc/source/proxy_factory/proxyfac.cxx
parentb610d25131cc29bd6906e7b380147d60488bd4f4 (diff)
loplugin:unnecessaryoverride (dtors) in stoc
Change-Id: I60652dbac6a76eacdbb4e951a636e7a40e88a6a6
Diffstat (limited to 'stoc/source/proxy_factory/proxyfac.cxx')
-rw-r--r--stoc/source/proxy_factory/proxyfac.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/stoc/source/proxy_factory/proxyfac.cxx b/stoc/source/proxy_factory/proxyfac.cxx
index 6006907d3aa5..b60af0b4d878 100644
--- a/stoc/source/proxy_factory/proxyfac.cxx
+++ b/stoc/source/proxy_factory/proxyfac.cxx
@@ -75,7 +75,6 @@ struct FactoryImpl : public ::cppu::WeakImplHelper< lang::XServiceInfo,
typelib_InterfaceTypeDescription * pTypeDescr );
FactoryImpl();
- virtual ~FactoryImpl() override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
@@ -169,7 +168,6 @@ struct ProxyRoot : public ::cppu::OWeakAggObject
virtual Any SAL_CALL queryAggregation( Type const & rType )
throw (RuntimeException, std::exception) override;
- virtual ~ProxyRoot() override;
inline ProxyRoot( ::rtl::Reference< FactoryImpl > const & factory,
Reference< XInterface > const & xTarget );
@@ -303,12 +301,6 @@ inline binuno_Proxy::binuno_Proxy(
uno_Interface::pDispatcher = binuno_proxy_dispatch;
}
-
-ProxyRoot::~ProxyRoot()
-{
-}
-
-
inline ProxyRoot::ProxyRoot(
::rtl::Reference< FactoryImpl > const & factory,
Reference< XInterface > const & xTarget )
@@ -417,9 +409,6 @@ FactoryImpl::FactoryImpl()
OSL_ENSURE( m_cpp2uno.is(), "### cannot get bridge C++ <-> uno!" );
}
-
-FactoryImpl::~FactoryImpl() {}
-
// XProxyFactory
Reference< XAggregation > FactoryImpl::createProxy(