summaryrefslogtreecommitdiff
path: root/stoc/source/defaultregistry
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/defaultregistry
parentb610d25131cc29bd6906e7b380147d60488bd4f4 (diff)
loplugin:unnecessaryoverride (dtors) in stoc
Change-Id: I60652dbac6a76eacdbb4e951a636e7a40e88a6a6
Diffstat (limited to 'stoc/source/defaultregistry')
-rw-r--r--stoc/source/defaultregistry/defaultregistry.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/stoc/source/defaultregistry/defaultregistry.cxx b/stoc/source/defaultregistry/defaultregistry.cxx
index 2885ccaad430..75ee807f335b 100644
--- a/stoc/source/defaultregistry/defaultregistry.cxx
+++ b/stoc/source/defaultregistry/defaultregistry.cxx
@@ -52,8 +52,6 @@ class NestedRegistryImpl : public WeakAggImplHelper4 < XSimpleRegistry, XInit
public:
NestedRegistryImpl( );
- virtual ~NestedRegistryImpl() override;
-
// XServiceInfo
virtual OUString SAL_CALL getImplementationName( ) throw(RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(RuntimeException, std::exception) override;
@@ -100,8 +98,6 @@ public:
NestedKeyImpl( const OUString& aKeyName,
NestedKeyImpl* pKey);
- virtual ~NestedKeyImpl() override;
-
// XRegistryKey
virtual OUString SAL_CALL getKeyName() throw(RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL isReadOnly( ) throw(InvalidRegistryException, RuntimeException, std::exception) override;
@@ -191,12 +187,6 @@ NestedKeyImpl::NestedKeyImpl( const OUString& rKeyName,
m_state = m_xRegistry->m_state;
}
-
-NestedKeyImpl::~NestedKeyImpl()
-{
-}
-
-
void NestedKeyImpl::computeChanges()
{
Guard< Mutex > aGuard( m_xRegistry->m_mutex );
@@ -1106,9 +1096,6 @@ NestedRegistryImpl::NestedRegistryImpl( )
: m_state(0)
{}
-
-NestedRegistryImpl::~NestedRegistryImpl() {}
-
class RegistryEnumueration : public WeakImplHelper< XEnumeration >
{
public: