diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-12-01 08:54:56 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-12-01 08:54:56 +0100 |
commit | 1222f58dcf817360abf3d24c2e1bca1613880b67 (patch) | |
tree | 65b0f43c0b701886a578a61ffda1e1054eeed227 /testtools | |
parent | 33c34f4b878ade73d3a1950433310713b7ff3923 (diff) |
loplugin:unnecessaryoverride (dtors) in testtools
Change-Id: If004c2c58cb92e211cea34b54c3c38c91ccb6e7d
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/source/bridgetest/bridgetest.cxx | 8 | ||||
-rw-r--r-- | testtools/source/bridgetest/currentcontextchecker.cxx | 4 |
2 files changed, 0 insertions, 12 deletions
diff --git a/testtools/source/bridgetest/bridgetest.cxx b/testtools/source/bridgetest/bridgetest.cxx index bcccf4f4d20a..167719de7c88 100644 --- a/testtools/source/bridgetest/bridgetest.cxx +++ b/testtools/source/bridgetest/bridgetest.cxx @@ -111,9 +111,6 @@ public: explicit TestBridgeImpl( const Reference< XComponentContext > & xContext ) : m_xContext( xContext ) {} - virtual ~TestBridgeImpl() override - { - } // XServiceInfo virtual OUString SAL_CALL getImplementationName() throw (RuntimeException, std::exception) override; @@ -339,7 +336,6 @@ class MyClass : public osl::DebugBase<MyClass>, public OWeakObject { public: MyClass(); - virtual ~MyClass() override; }; @@ -347,10 +343,6 @@ MyClass::MyClass() { } -MyClass::~MyClass() -{ -} - static bool performTest( const Reference<XComponentContext> & xContext, const Reference<XBridgeTest > & xLBT, diff --git a/testtools/source/bridgetest/currentcontextchecker.cxx b/testtools/source/bridgetest/currentcontextchecker.cxx index 114af51a4c22..5691335b1170 100644 --- a/testtools/source/bridgetest/currentcontextchecker.cxx +++ b/testtools/source/bridgetest/currentcontextchecker.cxx @@ -48,8 +48,6 @@ class CurrentContext: public: CurrentContext(); - virtual ~CurrentContext() override; - CurrentContext(const CurrentContext&) = delete; CurrentContext& operator=(const CurrentContext&) = delete; @@ -59,8 +57,6 @@ public: CurrentContext::CurrentContext() {} -CurrentContext::~CurrentContext() {} - css::uno::Any CurrentContext::getValueByName(OUString const & Name) throw (css::uno::RuntimeException, std::exception) { |