summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-05 09:04:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-05 09:04:10 +0100
commit13ce97351d1751eb24cf0cd1ad35048329407f15 (patch)
tree25ec6f8961a6c674cc41547b6d2e9b4d80d7aacc /extensions
parentccda3f37a4be4415e7349eed44cb9619da5cb153 (diff)
loplugin:unnecessaryoverride (dtors) in extensions
Change-Id: Ia8250bc33c5d05861794619c5d240fdcb4002c13
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/bibliography/framectr.cxx7
-rw-r--r--extensions/source/logging/csvformatter.cxx4
-rw-r--r--extensions/source/logging/plaintextformatter.cxx7
-rw-r--r--extensions/source/update/feed/updatefeed.cxx3
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx7
5 files changed, 0 insertions, 28 deletions
diff --git a/extensions/source/bibliography/framectr.cxx b/extensions/source/bibliography/framectr.cxx
index c1979822dea3..4dbc7eb1d7a1 100644
--- a/extensions/source/bibliography/framectr.cxx
+++ b/extensions/source/bibliography/framectr.cxx
@@ -144,17 +144,10 @@ public:
, pController(nullptr)
{}
- virtual ~BibFrameCtrl_Impl() override;
-
virtual void SAL_CALL frameAction(const FrameActionEvent& aEvent) throw( RuntimeException, std::exception ) override;
virtual void SAL_CALL disposing( const lang::EventObject& Source ) throw (css::uno::RuntimeException, std::exception) override;
};
-
-BibFrameCtrl_Impl::~BibFrameCtrl_Impl()
-{
-}
-
void BibFrameCtrl_Impl::frameAction(const FrameActionEvent& ) throw( uno::RuntimeException, std::exception )
{
}
diff --git a/extensions/source/logging/csvformatter.cxx b/extensions/source/logging/csvformatter.cxx
index 3da67b366b77..f668c287fab8 100644
--- a/extensions/source/logging/csvformatter.cxx
+++ b/extensions/source/logging/csvformatter.cxx
@@ -46,7 +46,6 @@ namespace logging
virtual OUString SAL_CALL formatMultiColumn(const Sequence< OUString>& column_data) throw (RuntimeException, std::exception) override;
CsvFormatter();
- virtual ~CsvFormatter() override;
private:
// XCsvLogFormatter
@@ -137,9 +136,6 @@ namespace logging
m_Columnnames({ "message" })
{ }
- CsvFormatter::~CsvFormatter()
- { }
-
sal_Bool CsvFormatter::getLogEventNo() throw (RuntimeException, std::exception)
{
return m_LogEventNo;
diff --git a/extensions/source/logging/plaintextformatter.cxx b/extensions/source/logging/plaintextformatter.cxx
index c88a1f7bd3fa..7e115dcb610f 100644
--- a/extensions/source/logging/plaintextformatter.cxx
+++ b/extensions/source/logging/plaintextformatter.cxx
@@ -43,7 +43,6 @@ namespace logging
{
public:
PlainTextFormatter();
- virtual ~PlainTextFormatter() override;
private:
// XLogFormatter
@@ -61,12 +60,6 @@ namespace logging
{
}
-
- PlainTextFormatter::~PlainTextFormatter()
- {
- }
-
-
OUString SAL_CALL PlainTextFormatter::getHead( ) throw (RuntimeException, std::exception)
{
OUStringBuffer aHeader;
diff --git a/extensions/source/update/feed/updatefeed.cxx b/extensions/source/update/feed/updatefeed.cxx
index d0e779be0c5f..0ab0e1cec738 100644
--- a/extensions/source/update/feed/updatefeed.cxx
+++ b/extensions/source/update/feed/updatefeed.cxx
@@ -233,8 +233,6 @@ public:
{
};
- virtual ~UpdateInformationEnumeration() override {};
-
// XEnumeration
sal_Bool SAL_CALL hasMoreElements() throw (uno::RuntimeException, std::exception) override { return m_nCount < m_nNodes; };
uno::Any SAL_CALL nextElement() throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception) override
@@ -292,7 +290,6 @@ class SingleUpdateInformationEnumeration : public ::cppu::WeakImplHelper< contai
public:
explicit SingleUpdateInformationEnumeration(const uno::Reference< xml::dom::XElement >& xElement)
: m_nCount(0) { m_aEntry.UpdateDocument = xElement; };
- virtual ~SingleUpdateInformationEnumeration() override {};
// XEnumeration
sal_Bool SAL_CALL hasMoreElements() throw (uno::RuntimeException, std::exception) override { return 0 == m_nCount; };
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx
index 23810da49033..ab3b54c592fc 100644
--- a/extensions/source/update/ui/updatecheckui.cxx
+++ b/extensions/source/update/ui/updatecheckui.cxx
@@ -103,7 +103,6 @@ private:
public:
BubbleWindow( vcl::Window* pParent, const OUString& rTitle,
const OUString& rText, const Image& rImage );
- virtual ~BubbleWindow() override;
virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) override;
@@ -753,12 +752,6 @@ BubbleWindow::BubbleWindow( vcl::Window* pParent, const OUString& rTitle,
SetBackground( Wallpaper( GetSettings().GetStyleSettings().GetHelpColor() ) );
}
-
-BubbleWindow::~BubbleWindow()
-{
-}
-
-
void BubbleWindow::Resize()
{
SolarMutexGuard aGuard;