diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-11-28 14:13:26 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-11-28 14:13:26 +0100 |
commit | 3d9c3ed1afc8d37d3bee800ca5988724fd758a6b (patch) | |
tree | 4b3ed4ce449409e161238e08e717d77b9af3da52 | |
parent | 1ca67dcaefe794c683b99382ba8bac0f736a7f0b (diff) |
loplugin:unnecessaryoverride (dtors) in filter
Change-Id: I0f859829a02721dd78b4bd0cc99bad6b864855d8
-rw-r--r-- | filter/source/msfilter/escherex.cxx | 1 | ||||
-rw-r--r-- | filter/source/pdf/pdfexport.cxx | 7 | ||||
-rw-r--r-- | filter/source/svg/svgexport.cxx | 5 | ||||
-rw-r--r-- | filter/source/xsltdialog/xmlfilterdialogcomponent.cxx | 7 |
4 files changed, 0 insertions, 20 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx index b8b5b831bd99..b6d56403d36c 100644 --- a/filter/source/msfilter/escherex.cxx +++ b/filter/source/msfilter/escherex.cxx @@ -4938,7 +4938,6 @@ protected: public: SvNullStream() : SvStream() {} - virtual ~SvNullStream() override {} }; EscherEx::EscherEx(const std::shared_ptr<EscherExGlobal>& rxGlobal, SvStream* pOutStrm, bool bOOXML) diff --git a/filter/source/pdf/pdfexport.cxx b/filter/source/pdf/pdfexport.cxx index 307d39eff691..99d1b4dccf81 100644 --- a/filter/source/pdf/pdfexport.cxx +++ b/filter/source/pdf/pdfexport.cxx @@ -264,17 +264,10 @@ public: : m_xSrcDoc( xDoc ), m_aPreparedPassword( rPwd ) {} - virtual ~PDFExportStreamDoc() override; virtual void write( const Reference< XOutputStream >& xStream ) override; }; - -PDFExportStreamDoc::~PDFExportStreamDoc() -{ -} - - void PDFExportStreamDoc::write( const Reference< XOutputStream >& xStream ) { Reference< css::frame::XStorable > xStore( m_xSrcDoc, UNO_QUERY ); diff --git a/filter/source/svg/svgexport.cxx b/filter/source/svg/svgexport.cxx index 7db79d29d473..44c48635f19d 100644 --- a/filter/source/svg/svgexport.cxx +++ b/filter/source/svg/svgexport.cxx @@ -145,7 +145,6 @@ public: SvXMLElementExport aExp( *pSVGExport, XML_NAMESPACE_NONE, "g", true, true ); pSVGExport->GetDocHandler()->characters( text ); } - virtual ~FixedTextField() override {} }; @@ -161,7 +160,6 @@ public: { implGrowCharSet( aTextFieldCharSets, text, aOOOAttrDateTimeField ); } - virtual ~FixedDateTimeField() override {} }; @@ -178,7 +176,6 @@ public: static const OUString sFieldId = aOOOAttrFooterField; implGrowCharSet( aTextFieldCharSets, text, sFieldId ); } - virtual ~FooterField() override {} }; @@ -189,7 +186,6 @@ public: { return OUString( "VariableTextField" ); } - virtual ~VariableTextField() override {} }; @@ -288,7 +284,6 @@ public: aTextFieldCharSets[ *aMasterPageIt ][ sFieldId ].insert( (sal_Unicode)( format ) ); } } - virtual ~VariableDateTimeField() override {} }; diff --git a/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx b/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx index 7d4bb28f611d..785a7d0427af 100644 --- a/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx +++ b/filter/source/xsltdialog/xmlfilterdialogcomponent.cxx @@ -68,7 +68,6 @@ class XMLFilterDialogComponent : public XMLFilterDialogComponentBase, { public: explicit XMLFilterDialogComponent( const Reference< XComponentContext >& rxContext ); - virtual ~XMLFilterDialogComponent() override; protected: // XInterface @@ -119,12 +118,6 @@ XMLFilterDialogComponent::XMLFilterDialogComponent( const css::uno::Reference< X xDesktop->addTerminateListener( xListener ); } - -XMLFilterDialogComponent::~XMLFilterDialogComponent() -{ -} - - // XInterface Any SAL_CALL XMLFilterDialogComponent::queryInterface( const Type& aType ) throw (RuntimeException, std::exception) { |