diff options
-rw-r--r-- | extensions/source/bibliography/framectr.cxx | 7 | ||||
-rw-r--r-- | extensions/source/logging/csvformatter.cxx | 4 | ||||
-rw-r--r-- | extensions/source/logging/plaintextformatter.cxx | 7 | ||||
-rw-r--r-- | extensions/source/update/feed/updatefeed.cxx | 3 | ||||
-rw-r--r-- | extensions/source/update/ui/updatecheckui.cxx | 7 |
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; |