diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 13:09:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 13:19:22 +0200 |
commit | 91dd2db17bd6cb9b357d1d69b187174e31eabef0 (patch) | |
tree | d634de3a1a6820904b5699c2136b79b1a5a807c7 /xmloff | |
parent | 6f8ea7e89ea190b9462c945d55a3ad8777b2f3ef (diff) |
loplugin:override: No more need for the "MSVC dtor override" workaround
The issue of 362d4f0cd4e50111edfae9d30c90602c37ed65a2 "Explicitly mark
overriding destructors as 'virtual'" appears to no longer be a problem with
MSVC 2013.
(The little change in the rewriting code of compilerplugins/clang/override.cxx
was necessary to prevent an endless loop when adding "override" to
OOO_DLLPUBLIC_CHARTTOOLS virtual ~CloseableLifeTimeManager();
in chart2/source/inc/LifeTime.hxx, getting stuck in the leading
OOO_DLLPUBLIC_CHARTTOOLS macro. Can't remember what that
isAtEndOfImmediateMacroExpansion thing was originally necessary for, anyway.)
Change-Id: I534c634504d7216b9bb632c2775c04eaf27e927e
Diffstat (limited to 'xmloff')
240 files changed, 401 insertions, 401 deletions
diff --git a/xmloff/inc/AttributeContainerHandler.hxx b/xmloff/inc/AttributeContainerHandler.hxx index 0e986151e2c9..4cdeccaaf1eb 100644 --- a/xmloff/inc/AttributeContainerHandler.hxx +++ b/xmloff/inc/AttributeContainerHandler.hxx @@ -28,7 +28,7 @@ class XMLAttributeContainerHandler : public XMLPropertyHandler { public: - virtual ~XMLAttributeContainerHandler(); + virtual ~XMLAttributeContainerHandler() override; virtual bool equals( const css::uno::Any& r1, const css::uno::Any& r2 ) const override; diff --git a/xmloff/inc/DomBuilderContext.hxx b/xmloff/inc/DomBuilderContext.hxx index 89b9e2ad100b..211cb6c83d58 100644 --- a/xmloff/inc/DomBuilderContext.hxx +++ b/xmloff/inc/DomBuilderContext.hxx @@ -58,7 +58,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::xml::dom::XNode>& ); - virtual ~DomBuilderContext(); + virtual ~DomBuilderContext() override; // access to the DOM tree diff --git a/xmloff/inc/MetaExportComponent.hxx b/xmloff/inc/MetaExportComponent.hxx index fc7b6a1a6225..0f128201cb21 100644 --- a/xmloff/inc/MetaExportComponent.hxx +++ b/xmloff/inc/MetaExportComponent.hxx @@ -34,7 +34,7 @@ public: OUString const & implementationName, SvXMLExportFlags nFlags ); - virtual ~XMLMetaExportComponent(); + virtual ~XMLMetaExportComponent() override; protected: // export the events off all autotexts diff --git a/xmloff/inc/PageMasterImportContext.hxx b/xmloff/inc/PageMasterImportContext.hxx index 9deea733781a..06bbf7a9dd02 100644 --- a/xmloff/inc/PageMasterImportContext.hxx +++ b/xmloff/inc/PageMasterImportContext.hxx @@ -45,7 +45,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, SvXMLStylesContext& rStyles, bool bDefaultStyle=false); - virtual ~PageStyleContext(); + virtual ~PageStyleContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/inc/SchXMLExport.hxx b/xmloff/inc/SchXMLExport.hxx index d9f7907515e2..a4e1242b99d2 100644 --- a/xmloff/inc/SchXMLExport.hxx +++ b/xmloff/inc/SchXMLExport.hxx @@ -54,7 +54,7 @@ public: const css::uno::Reference< css::uno::XComponentContext >& xContext, OUString const & implementationName, SvXMLExportFlags nExportFlags = SvXMLExportFlags::ALL ); - virtual ~SchXMLExport(); + virtual ~SchXMLExport() override; rtl::Reference< XMLPropertySetMapper > GetPropertySetMapper() const; }; diff --git a/xmloff/inc/SchXMLImport.hxx b/xmloff/inc/SchXMLImport.hxx index aae955c3fd68..aedb91f86324 100644 --- a/xmloff/inc/SchXMLImport.hxx +++ b/xmloff/inc/SchXMLImport.hxx @@ -173,7 +173,7 @@ public: const css::uno::Reference< css::uno::XComponentContext >& xContext, OUString const & implementationName, SvXMLImportFlags nImportFlags ); - virtual ~SchXMLImport() throw (); + virtual ~SchXMLImport() throw () override; SvXMLImportContext* CreateStylesContext( const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); diff --git a/xmloff/inc/StyleMap.hxx b/xmloff/inc/StyleMap.hxx index 77bf1262b4d5..d308ba033ff0 100644 --- a/xmloff/inc/StyleMap.hxx +++ b/xmloff/inc/StyleMap.hxx @@ -66,7 +66,7 @@ class StyleMap : public: StyleMap(); - virtual ~StyleMap(); + virtual ~StyleMap() override; static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw(); static StyleMap* getImplementation( diff --git a/xmloff/inc/XMLBackgroundImageContext.hxx b/xmloff/inc/XMLBackgroundImageContext.hxx index 13da75c0bdc0..9688b8a5d75f 100644 --- a/xmloff/inc/XMLBackgroundImageContext.hxx +++ b/xmloff/inc/XMLBackgroundImageContext.hxx @@ -59,7 +59,7 @@ public: sal_Int32 nBitmapModeIdx, ::std::vector< XMLPropertyState > &rProps ); - virtual ~XMLBackgroundImageContext(); + virtual ~XMLBackgroundImageContext() override; SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/inc/XMLBasicExportFilter.hxx b/xmloff/inc/XMLBasicExportFilter.hxx index 3fc8d5b38020..e4128586bdec 100644 --- a/xmloff/inc/XMLBasicExportFilter.hxx +++ b/xmloff/inc/XMLBasicExportFilter.hxx @@ -36,7 +36,7 @@ private: public: XMLBasicExportFilter( const css::uno::Reference< css::xml::sax::XDocumentHandler >& rxHandler ); - virtual ~XMLBasicExportFilter(); + virtual ~XMLBasicExportFilter() override; // XDocumentHandler virtual void SAL_CALL startDocument() diff --git a/xmloff/inc/XMLBitmapLogicalSizePropertyHandler.hxx b/xmloff/inc/XMLBitmapLogicalSizePropertyHandler.hxx index caf3c2bb61f7..ced08e4cab80 100644 --- a/xmloff/inc/XMLBitmapLogicalSizePropertyHandler.hxx +++ b/xmloff/inc/XMLBitmapLogicalSizePropertyHandler.hxx @@ -35,7 +35,7 @@ public: XMLBitmapLogicalSizePropertyHandler(); // Just needed for virtual destruction - virtual ~XMLBitmapLogicalSizePropertyHandler(); + virtual ~XMLBitmapLogicalSizePropertyHandler() override; /// Imports the given value in cas of the given XML-data-type virtual bool importXML( diff --git a/xmloff/inc/XMLBitmapRepeatOffsetPropertyHandler.hxx b/xmloff/inc/XMLBitmapRepeatOffsetPropertyHandler.hxx index 523c87fcfd11..393cd4761825 100644 --- a/xmloff/inc/XMLBitmapRepeatOffsetPropertyHandler.hxx +++ b/xmloff/inc/XMLBitmapRepeatOffsetPropertyHandler.hxx @@ -37,7 +37,7 @@ public: XMLBitmapRepeatOffsetPropertyHandler( bool bX ); // Just needed for virtual destruction - virtual ~XMLBitmapRepeatOffsetPropertyHandler(); + virtual ~XMLBitmapRepeatOffsetPropertyHandler() override; /// Imports the given value in cas of the given XML-data-type virtual bool importXML( diff --git a/xmloff/inc/XMLChartPropertySetMapper.hxx b/xmloff/inc/XMLChartPropertySetMapper.hxx index 8a4433fc5a5e..588a4be0a090 100644 --- a/xmloff/inc/XMLChartPropertySetMapper.hxx +++ b/xmloff/inc/XMLChartPropertySetMapper.hxx @@ -31,7 +31,7 @@ class SvXMLExport; class XMLChartPropHdlFactory : public XMLPropertyHandlerFactory { public: - virtual ~XMLChartPropHdlFactory(); + virtual ~XMLChartPropHdlFactory() override; virtual const XMLPropertyHandler* GetPropertyHandler( sal_Int32 nType ) const override; }; @@ -39,7 +39,7 @@ class XMLChartPropertySetMapper : public XMLPropertySetMapper { public: explicit XMLChartPropertySetMapper( bool bForExport ); - virtual ~XMLChartPropertySetMapper(); + virtual ~XMLChartPropertySetMapper() override; }; class XMLChartExportPropertyMapper : public SvXMLExportPropertyMapper @@ -72,7 +72,7 @@ private: public: XMLChartExportPropertyMapper( const rtl::Reference< XMLPropertySetMapper >& rMapper, SvXMLExport& rExport ); - virtual ~XMLChartExportPropertyMapper(); + virtual ~XMLChartExportPropertyMapper() override; void setChartDoc( const css::uno::Reference< css::chart2::XChartDocument >& xChartDoc ); }; @@ -85,7 +85,7 @@ private: public: XMLChartImportPropertyMapper( const rtl::Reference< XMLPropertySetMapper >& rMapper, const SvXMLImport& rImport ); - virtual ~XMLChartImportPropertyMapper(); + virtual ~XMLChartImportPropertyMapper() override; virtual bool handleSpecialItem( XMLPropertyState& rProperty, diff --git a/xmloff/inc/XMLChartStyleContext.hxx b/xmloff/inc/XMLChartStyleContext.hxx index 09751ba37ac6..6e32fc1e6b88 100644 --- a/xmloff/inc/XMLChartStyleContext.hxx +++ b/xmloff/inc/XMLChartStyleContext.hxx @@ -41,7 +41,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, SvXMLStylesContext& rStyles, sal_uInt16 nFamily ); - virtual ~XMLChartStyleContext(); + virtual ~XMLChartStyleContext() override; /// is called after all styles have been read to apply styles void FillPropertySet( diff --git a/xmloff/inc/XMLClipPropertyHandler.hxx b/xmloff/inc/XMLClipPropertyHandler.hxx index 01b69400b461..55cd77615705 100644 --- a/xmloff/inc/XMLClipPropertyHandler.hxx +++ b/xmloff/inc/XMLClipPropertyHandler.hxx @@ -30,7 +30,7 @@ class XMLClipPropertyHandler : public XMLPropertyHandler bool m_bODF11; public: XMLClipPropertyHandler( bool bODF11 ); - virtual ~XMLClipPropertyHandler(); + virtual ~XMLClipPropertyHandler() override; virtual bool equals( const css::uno::Any& r1, const css::uno::Any& r2 ) const override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/inc/XMLElementPropertyContext.hxx b/xmloff/inc/XMLElementPropertyContext.hxx index 1c412c818ae4..88aac3d136b3 100644 --- a/xmloff/inc/XMLElementPropertyContext.hxx +++ b/xmloff/inc/XMLElementPropertyContext.hxx @@ -45,7 +45,7 @@ public: const XMLPropertyState& rProp, ::std::vector< XMLPropertyState > &rProps ); - virtual ~XMLElementPropertyContext(); + virtual ~XMLElementPropertyContext() override; virtual void EndElement() override; }; diff --git a/xmloff/inc/XMLEmbeddedObjectImportContext.hxx b/xmloff/inc/XMLEmbeddedObjectImportContext.hxx index b071f067e2b1..01046620e0d7 100644 --- a/xmloff/inc/XMLEmbeddedObjectImportContext.hxx +++ b/xmloff/inc/XMLEmbeddedObjectImportContext.hxx @@ -43,7 +43,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); - virtual ~XMLEmbeddedObjectImportContext(); + virtual ~XMLEmbeddedObjectImportContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/inc/XMLFillBitmapSizePropertyHandler.hxx b/xmloff/inc/XMLFillBitmapSizePropertyHandler.hxx index 6425a5832132..8fc21596b272 100644 --- a/xmloff/inc/XMLFillBitmapSizePropertyHandler.hxx +++ b/xmloff/inc/XMLFillBitmapSizePropertyHandler.hxx @@ -35,7 +35,7 @@ public: XMLFillBitmapSizePropertyHandler(); // Just needed for virtual destruction - virtual ~XMLFillBitmapSizePropertyHandler(); + virtual ~XMLFillBitmapSizePropertyHandler() override; /// Imports the given value in cas of the given XML-data-type virtual bool importXML( diff --git a/xmloff/inc/XMLFootnoteConfigurationImportContext.hxx b/xmloff/inc/XMLFootnoteConfigurationImportContext.hxx index 1f05299169fa..4ea1da3db1ae 100644 --- a/xmloff/inc/XMLFootnoteConfigurationImportContext.hxx +++ b/xmloff/inc/XMLFootnoteConfigurationImportContext.hxx @@ -72,7 +72,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList> & xAttrList); - virtual ~XMLFootnoteConfigurationImportContext(); + virtual ~XMLFootnoteConfigurationImportContext() override; /// parse attributes virtual void StartElement( diff --git a/xmloff/inc/XMLImageMapContext.hxx b/xmloff/inc/XMLImageMapContext.hxx index 1c8db861f702..b6a5b09f35af 100644 --- a/xmloff/inc/XMLImageMapContext.hxx +++ b/xmloff/inc/XMLImageMapContext.hxx @@ -50,7 +50,7 @@ public: const OUString& rLocalName, css::uno::Reference< css::beans::XPropertySet> & rPropertySet); - virtual ~XMLImageMapContext(); + virtual ~XMLImageMapContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/inc/XMLIndexBibliographyConfigurationContext.hxx b/xmloff/inc/XMLIndexBibliographyConfigurationContext.hxx index 2b157667b9b6..368161dab1a9 100644 --- a/xmloff/inc/XMLIndexBibliographyConfigurationContext.hxx +++ b/xmloff/inc/XMLIndexBibliographyConfigurationContext.hxx @@ -72,7 +72,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList> & xAttrList); - virtual ~XMLIndexBibliographyConfigurationContext(); + virtual ~XMLIndexBibliographyConfigurationContext() override; protected: diff --git a/xmloff/inc/XMLIsPercentagePropertyHandler.hxx b/xmloff/inc/XMLIsPercentagePropertyHandler.hxx index d27fe046ac77..f2056a7c7644 100644 --- a/xmloff/inc/XMLIsPercentagePropertyHandler.hxx +++ b/xmloff/inc/XMLIsPercentagePropertyHandler.hxx @@ -29,7 +29,7 @@ class XMLIsPercentagePropertyHandler : public XMLPropertyHandler { public: - virtual ~XMLIsPercentagePropertyHandler (); + virtual ~XMLIsPercentagePropertyHandler () override; virtual bool importXML( const OUString& rStrImpValue, diff --git a/xmloff/inc/XMLLineNumberingImportContext.hxx b/xmloff/inc/XMLLineNumberingImportContext.hxx index f15d14cda902..ad01b45f61cf 100644 --- a/xmloff/inc/XMLLineNumberingImportContext.hxx +++ b/xmloff/inc/XMLLineNumberingImportContext.hxx @@ -84,7 +84,7 @@ public: const OUString& rLocalName, const css::uno::Reference<css::xml::sax::XAttributeList> & xAttrList); - virtual ~XMLLineNumberingImportContext(); + virtual ~XMLLineNumberingImportContext() override; // to be used by child context: set separator info void SetSeparatorText(const OUString& sText); diff --git a/xmloff/inc/XMLNumberStylesImport.hxx b/xmloff/inc/XMLNumberStylesImport.hxx index be2de70d98d3..172e17587742 100644 --- a/xmloff/inc/XMLNumberStylesImport.hxx +++ b/xmloff/inc/XMLNumberStylesImport.hxx @@ -53,7 +53,7 @@ public: SvXMLNumImpData* pNewData, sal_uInt16 nNewType, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, SvXMLStylesContext& rStyles); - virtual ~SdXMLNumberFormatImportContext(); + virtual ~SdXMLNumberFormatImportContext() override; virtual void EndElement() override; diff --git a/xmloff/inc/XMLPercentOrMeasurePropertyHandler.hxx b/xmloff/inc/XMLPercentOrMeasurePropertyHandler.hxx index 9aeaea39df8f..974a779c77d5 100644 --- a/xmloff/inc/XMLPercentOrMeasurePropertyHandler.hxx +++ b/xmloff/inc/XMLPercentOrMeasurePropertyHandler.hxx @@ -29,7 +29,7 @@ class XMLPercentOrMeasurePropertyHandler : public XMLPropertyHandler { public: XMLPercentOrMeasurePropertyHandler(); - virtual ~XMLPercentOrMeasurePropertyHandler (); + virtual ~XMLPercentOrMeasurePropertyHandler () override; virtual bool importXML( const OUString& rStrImpValue, diff --git a/xmloff/inc/XMLRectangleMembersHandler.hxx b/xmloff/inc/XMLRectangleMembersHandler.hxx index ce21f0505761..965aa3c2939f 100644 --- a/xmloff/inc/XMLRectangleMembersHandler.hxx +++ b/xmloff/inc/XMLRectangleMembersHandler.hxx @@ -37,7 +37,7 @@ public: XMLRectangleMembersHdl( sal_Int32 nType ); // Just needed for virtual destruction - virtual ~XMLRectangleMembersHdl(); + virtual ~XMLRectangleMembersHdl() override; /// Imports the given value in cas of the given XML-data-type virtual bool importXML( diff --git a/xmloff/inc/XMLReplacementImageContext.hxx b/xmloff/inc/XMLReplacementImageContext.hxx index 243db0bfaf0f..dd6a3fa733f8 100644 --- a/xmloff/inc/XMLReplacementImageContext.hxx +++ b/xmloff/inc/XMLReplacementImageContext.hxx @@ -44,7 +44,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList > & rAttrList, const css::uno::Reference< css::beans::XPropertySet >& rPropSet ); - virtual ~XMLReplacementImageContext(); + virtual ~XMLReplacementImageContext() override; virtual void EndElement() override; diff --git a/xmloff/inc/XMLScriptContextFactory.hxx b/xmloff/inc/XMLScriptContextFactory.hxx index 9e687df7628e..8372e3a7c1ad 100644 --- a/xmloff/inc/XMLScriptContextFactory.hxx +++ b/xmloff/inc/XMLScriptContextFactory.hxx @@ -38,7 +38,7 @@ class XMLScriptContextFactory : public XMLEventContextFactory public: XMLScriptContextFactory(); - virtual ~XMLScriptContextFactory(); + virtual ~XMLScriptContextFactory() override; virtual SvXMLImportContext * CreateContext(SvXMLImport & rImport, /// import context diff --git a/xmloff/inc/XMLScriptExportHandler.hxx b/xmloff/inc/XMLScriptExportHandler.hxx index feb5c8afee23..54d6861ad788 100644 --- a/xmloff/inc/XMLScriptExportHandler.hxx +++ b/xmloff/inc/XMLScriptExportHandler.hxx @@ -37,7 +37,7 @@ class XMLScriptExportHandler : public XMLEventExportHandler public: XMLScriptExportHandler(); - virtual ~XMLScriptExportHandler(); + virtual ~XMLScriptExportHandler() override; virtual void Export( SvXMLExport& rExport, diff --git a/xmloff/inc/XMLShapePropertySetContext.hxx b/xmloff/inc/XMLShapePropertySetContext.hxx index 9a11ad2d58a9..d583983d9005 100644 --- a/xmloff/inc/XMLShapePropertySetContext.hxx +++ b/xmloff/inc/XMLShapePropertySetContext.hxx @@ -37,7 +37,7 @@ public: ::std::vector< XMLPropertyState > &rProps, const rtl::Reference < SvXMLImportPropertyMapper > &rMap ); - virtual ~XMLShapePropertySetContext(); + virtual ~XMLShapePropertySetContext() override; virtual void EndElement() override; diff --git a/xmloff/inc/XMLStarBasicContextFactory.hxx b/xmloff/inc/XMLStarBasicContextFactory.hxx index f03e5660870f..aa46454a071d 100644 --- a/xmloff/inc/XMLStarBasicContextFactory.hxx +++ b/xmloff/inc/XMLStarBasicContextFactory.hxx @@ -40,7 +40,7 @@ class XMLStarBasicContextFactory : public XMLEventContextFactory public: XMLStarBasicContextFactory(); - virtual ~XMLStarBasicContextFactory(); + virtual ~XMLStarBasicContextFactory() override; virtual SvXMLImportContext* CreateContext( SvXMLImport& rImport, /// import context diff --git a/xmloff/inc/XMLStarBasicExportHandler.hxx b/xmloff/inc/XMLStarBasicExportHandler.hxx index e1be54256572..f0e5e01714b5 100644 --- a/xmloff/inc/XMLStarBasicExportHandler.hxx +++ b/xmloff/inc/XMLStarBasicExportHandler.hxx @@ -41,7 +41,7 @@ class XMLStarBasicExportHandler : public XMLEventExportHandler public: XMLStarBasicExportHandler(); - virtual ~XMLStarBasicExportHandler(); + virtual ~XMLStarBasicExportHandler() override; virtual void Export( SvXMLExport& rExport, diff --git a/xmloff/inc/XMLStringBufferImportContext.hxx b/xmloff/inc/XMLStringBufferImportContext.hxx index db92e9cf829e..c3bb802f0e11 100644 --- a/xmloff/inc/XMLStringBufferImportContext.hxx +++ b/xmloff/inc/XMLStringBufferImportContext.hxx @@ -43,7 +43,7 @@ public: const OUString& sLocalName, OUStringBuffer& rBuffer); - virtual ~XMLStringBufferImportContext(); + virtual ~XMLStringBufferImportContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/inc/XMLTextColumnsPropertyHandler.hxx b/xmloff/inc/XMLTextColumnsPropertyHandler.hxx index 0b2f2d435165..25554f5218d1 100644 --- a/xmloff/inc/XMLTextColumnsPropertyHandler.hxx +++ b/xmloff/inc/XMLTextColumnsPropertyHandler.hxx @@ -28,7 +28,7 @@ class XMLTextColumnsPropertyHandler : public XMLPropertyHandler { public: - virtual ~XMLTextColumnsPropertyHandler (); + virtual ~XMLTextColumnsPropertyHandler () override; virtual bool equals( const css::uno::Any& r1, diff --git a/xmloff/inc/XMLTextHeaderFooterContext.hxx b/xmloff/inc/XMLTextHeaderFooterContext.hxx index d22907451d8e..46f7798a6f67 100644 --- a/xmloff/inc/XMLTextHeaderFooterContext.hxx +++ b/xmloff/inc/XMLTextHeaderFooterContext.hxx @@ -51,7 +51,7 @@ public: const css::uno::Reference< css::beans::XPropertySet > & rPageStylePropSet, bool bFooter, bool bLft, bool bFrst ); - virtual ~XMLTextHeaderFooterContext(); + virtual ~XMLTextHeaderFooterContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/inc/forms/property_handler.hxx b/xmloff/inc/forms/property_handler.hxx index 2f597950dd48..e495d45d65dd 100644 --- a/xmloff/inc/forms/property_handler.hxx +++ b/xmloff/inc/forms/property_handler.hxx @@ -53,7 +53,7 @@ namespace xmloff virtual bool getPropertyValues( const OUString& i_attributeValue, PropertyValues& o_propertyValues ) const = 0; - virtual ~PropertyHandlerBase() {} + virtual ~PropertyHandlerBase() override {} }; //= PPropertyHandler diff --git a/xmloff/inc/txtfldi.hxx b/xmloff/inc/txtfldi.hxx index b6b2a6b8de81..f818242b70d8 100644 --- a/xmloff/inc/txtfldi.hxx +++ b/xmloff/inc/txtfldi.hxx @@ -132,7 +132,7 @@ public: sal_uInt16 nPrfx, /// namespace prefix const OUString& rLocalName); /// element name w/o prefix - virtual ~XMLTextFieldImportContext(); + virtual ~XMLTextFieldImportContext() override; /// process character data: will be collected in member sContentBuffer virtual void Characters( const OUString& sContent ) override; diff --git a/xmloff/inc/txtvfldi.hxx b/xmloff/inc/txtvfldi.hxx index 168d9376d192..02df858d3b4d 100644 --- a/xmloff/inc/txtvfldi.hxx +++ b/xmloff/inc/txtvfldi.hxx @@ -485,7 +485,7 @@ public: XMLTextImportHelper& rHlp, /// text import helper sal_uInt16 nPrfx, /// namespace prefix const OUString& rLocalName); /// element name w/o prefix - virtual ~XMLTableFormulaImportContext(); + virtual ~XMLTableFormulaImportContext() override; protected: diff --git a/xmloff/inc/xmlversion.hxx b/xmloff/inc/xmlversion.hxx index c31e39337c01..df29a971927c 100644 --- a/xmloff/inc/xmlversion.hxx +++ b/xmloff/inc/xmlversion.hxx @@ -42,7 +42,7 @@ public: const css::uno::Sequence < css::util::RevisionTag >& rVersions, const OUString &rFileName, css::uno::Reference< css::xml::sax::XDocumentHandler > &rHandler ); - virtual ~XMLVersionListExport() {} + virtual ~XMLVersionListExport() override {} sal_uInt32 exportDoc( enum ::xmloff::token::XMLTokenEnum eClass = ::xmloff::token::XML_TOKEN_INVALID ) override; void ExportAutoStyles_() override {} @@ -68,7 +68,7 @@ public: XMLVersionListImport( const css::uno::Reference< css::uno::XComponentContext >& rContext, css::uno::Sequence < css::util::RevisionTag >& rVersions ); - virtual ~XMLVersionListImport() throw(); + virtual ~XMLVersionListImport() throw() override; css::uno::Sequence < css::util::RevisionTag >& GetList() { return maVersions; } @@ -86,7 +86,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList ); - virtual ~XMLVersionListContext(); + virtual ~XMLVersionListContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -110,7 +110,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList ); - virtual ~XMLVersionContext(); + virtual ~XMLVersionContext() override; }; class XMLVersionListPersistence : public ::cppu::WeakImplHelper< css::document::XDocumentRevisionListPersistence, css::lang::XServiceInfo > diff --git a/xmloff/source/chart/ColorPropertySet.hxx b/xmloff/source/chart/ColorPropertySet.hxx index 0523d2d31109..7ea0ec85b3ec 100644 --- a/xmloff/source/chart/ColorPropertySet.hxx +++ b/xmloff/source/chart/ColorPropertySet.hxx @@ -35,7 +35,7 @@ class ColorPropertySet : public ::cppu::WeakImplHelper< { public: explicit ColorPropertySet( sal_Int32 nColor ); - virtual ~ColorPropertySet(); + virtual ~ColorPropertySet() override; protected: // ____ XPropertySet ____ diff --git a/xmloff/source/chart/SchXMLAutoStylePoolP.hxx b/xmloff/source/chart/SchXMLAutoStylePoolP.hxx index 44f3db677d10..be92f991c424 100644 --- a/xmloff/source/chart/SchXMLAutoStylePoolP.hxx +++ b/xmloff/source/chart/SchXMLAutoStylePoolP.hxx @@ -39,7 +39,7 @@ protected: public: explicit SchXMLAutoStylePoolP( SchXMLExport& rSchXMLExport ); - virtual ~SchXMLAutoStylePoolP(); + virtual ~SchXMLAutoStylePoolP() override; }; #endif // INCLUDED_XMLOFF_SOURCE_CHART_SCHXMLAUTOSTYLEPOOLP_HXX diff --git a/xmloff/source/chart/SchXMLAxisContext.cxx b/xmloff/source/chart/SchXMLAxisContext.cxx index db192fc9133a..f946cf54e672 100644 --- a/xmloff/source/chart/SchXMLAxisContext.cxx +++ b/xmloff/source/chart/SchXMLAxisContext.cxx @@ -77,7 +77,7 @@ public: sal_uInt16 nPrefix, const OUString& rLocalName, OUString& rAddress ); - virtual ~SchXMLCategoriesContext(); + virtual ~SchXMLCategoriesContext() override; virtual void StartElement( const Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; @@ -88,7 +88,7 @@ public: sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< beans::XPropertySet >& rAxisProps ); - virtual ~DateScaleContext(); + virtual ~DateScaleContext() override; virtual void StartElement( const Reference< css::xml::sax::XAttributeList >& xAttrList ) override; private: diff --git a/xmloff/source/chart/SchXMLAxisContext.hxx b/xmloff/source/chart/SchXMLAxisContext.hxx index 1b4da16aeaf8..68b6ed740d91 100644 --- a/xmloff/source/chart/SchXMLAxisContext.hxx +++ b/xmloff/source/chart/SchXMLAxisContext.hxx @@ -34,7 +34,7 @@ public: bool bAdaptWrongPercentScaleValues, bool bAdaptXAxisOrientationForOld2DBarCharts, bool& rbAxisPositionAttributeImported ); - virtual ~SchXMLAxisContext(); + virtual ~SchXMLAxisContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/chart/SchXMLChartContext.hxx b/xmloff/source/chart/SchXMLChartContext.hxx index 810214898a67..649c9b6cc387 100644 --- a/xmloff/source/chart/SchXMLChartContext.hxx +++ b/xmloff/source/chart/SchXMLChartContext.hxx @@ -78,7 +78,7 @@ class SchXMLChartContext : public SvXMLImportContext public: SchXMLChartContext( SchXMLImportHelper& rImpHelper, SvXMLImport& rImport, const OUString& rLocalName ); - virtual ~SchXMLChartContext(); + virtual ~SchXMLChartContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -139,7 +139,7 @@ public: SvXMLImport& rImport, const OUString& rLocalName, OUString& rTitle, css::uno::Reference< css::drawing::XShape >& xTitleShape ); - virtual ~SchXMLTitleContext(); + virtual ~SchXMLTitleContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual SvXMLImportContext *CreateChildContext( diff --git a/xmloff/source/chart/SchXMLEnumConverter.cxx b/xmloff/source/chart/SchXMLEnumConverter.cxx index 287dd1e56444..65c5a4ed7c8e 100644 --- a/xmloff/source/chart/SchXMLEnumConverter.cxx +++ b/xmloff/source/chart/SchXMLEnumConverter.cxx @@ -44,7 +44,7 @@ class XMLLegendPositionPropertyHdl : public XMLEnumPropertyHdl public: XMLLegendPositionPropertyHdl() : XMLEnumPropertyHdl( aXMLLegendPositionEnumMap, cppu::UnoType<chart::ChartLegendPosition>::get()) {} - virtual ~XMLLegendPositionPropertyHdl() {}; + virtual ~XMLLegendPositionPropertyHdl() override {}; }; struct TheLegendPositionPropertyHdl : public rtl::Static< XMLLegendPositionPropertyHdl, TheLegendPositionPropertyHdl > @@ -65,7 +65,7 @@ class XMLLegendExpansionPropertyHdl : public XMLEnumPropertyHdl public: XMLLegendExpansionPropertyHdl() : XMLEnumPropertyHdl( aXMLLegendExpansionEnumMap, cppu::UnoType<chart::ChartLegendExpansion>::get()) {} - virtual ~XMLLegendExpansionPropertyHdl() {}; + virtual ~XMLLegendExpansionPropertyHdl() override {}; }; struct TheLegendExpansionPropertyHdl : public rtl::Static< XMLLegendExpansionPropertyHdl, TheLegendExpansionPropertyHdl > diff --git a/xmloff/source/chart/SchXMLLegendContext.hxx b/xmloff/source/chart/SchXMLLegendContext.hxx index 963d31cd62eb..bf4adb2cc9fa 100644 --- a/xmloff/source/chart/SchXMLLegendContext.hxx +++ b/xmloff/source/chart/SchXMLLegendContext.hxx @@ -25,7 +25,7 @@ class SchXMLLegendContext : public SvXMLImportContext { public: SchXMLLegendContext( SchXMLImportHelper& rImpHelper, SvXMLImport& rImport, const OUString& rLocalName ); - virtual ~SchXMLLegendContext(); + virtual ~SchXMLLegendContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; diff --git a/xmloff/source/chart/SchXMLParagraphContext.hxx b/xmloff/source/chart/SchXMLParagraphContext.hxx index e8959c540a33..f0b6d227b6b8 100644 --- a/xmloff/source/chart/SchXMLParagraphContext.hxx +++ b/xmloff/source/chart/SchXMLParagraphContext.hxx @@ -39,7 +39,7 @@ public: const OUString& rLocalName, OUString& rText, OUString * pOutId = nullptr ); - virtual ~SchXMLParagraphContext(); + virtual ~SchXMLParagraphContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/chart/SchXMLPlotAreaContext.hxx b/xmloff/source/chart/SchXMLPlotAreaContext.hxx index 2380e3b56ece..17e1a6467cbb 100644 --- a/xmloff/source/chart/SchXMLPlotAreaContext.hxx +++ b/xmloff/source/chart/SchXMLPlotAreaContext.hxx @@ -98,7 +98,7 @@ public: const OUString& aChartTypeServiceName, tSchXMLLSequencesPerIndex & rLSequencesPerIndex, const css::awt::Size & rChartSize ); - virtual ~SchXMLPlotAreaContext(); + virtual ~SchXMLPlotAreaContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual SvXMLImportContext* CreateChildContext( @@ -153,7 +153,7 @@ public: const css::uno::Reference< css::chart2::XDataSeries >& xSeries, sal_Int32& rIndex, bool bSymbolSizeForSeriesIsMissingInFile ); - virtual ~SchXMLDataPointContext(); + virtual ~SchXMLDataPointContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; @@ -166,7 +166,7 @@ public: , sal_uInt16 nPrefix , const OUString& rLocalName , SchXMLPositionAttributesHelper& rPositioning ); - virtual ~SchXMLCoordinateRegionContext(); + virtual ~SchXMLCoordinateRegionContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; private: @@ -194,7 +194,7 @@ public: const OUString& rLocalName, css::uno::Reference< css::chart::XDiagram >& xDiagram, ContextType eContextType ); - virtual ~SchXMLWallFloorContext(); + virtual ~SchXMLWallFloorContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; @@ -220,7 +220,7 @@ public: const OUString& rLocalName, css::uno::Reference< css::chart::XDiagram >& xDiagram, ContextType eContextType ); - virtual ~SchXMLStockContext(); + virtual ~SchXMLStockContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; @@ -244,7 +244,7 @@ public: ContextType eContextType, tSchXMLLSequencesPerIndex & rLSequencesPerIndex ); - virtual ~SchXMLStatisticsObjectContext(); + virtual ~SchXMLStatisticsObjectContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual SvXMLImportContext* CreateChildContext( diff --git a/xmloff/source/chart/SchXMLPropertyMappingContext.hxx b/xmloff/source/chart/SchXMLPropertyMappingContext.hxx index 44942bfe4469..2c9e82c2a6a5 100644 --- a/xmloff/source/chart/SchXMLPropertyMappingContext.hxx +++ b/xmloff/source/chart/SchXMLPropertyMappingContext.hxx @@ -32,7 +32,7 @@ public: css::uno::Reference< css::chart2::XDataSeries > const & xSeries ); - virtual ~SchXMLPropertyMappingContext(); + virtual ~SchXMLPropertyMappingContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; private: diff --git a/xmloff/source/chart/SchXMLRegressionCurveObjectContext.hxx b/xmloff/source/chart/SchXMLRegressionCurveObjectContext.hxx index f111ab2de909..6de26ae03b51 100644 --- a/xmloff/source/chart/SchXMLRegressionCurveObjectContext.hxx +++ b/xmloff/source/chart/SchXMLRegressionCurveObjectContext.hxx @@ -39,7 +39,7 @@ public: const css::uno::Reference< css::chart2::XDataSeries >& xSeries, const css::awt::Size & rChartSize ); - virtual ~SchXMLRegressionCurveObjectContext(); + virtual ~SchXMLRegressionCurveObjectContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual SvXMLImportContext* CreateChildContext( @@ -66,7 +66,7 @@ public: const css::awt::Size & rChartSize, RegressionStyle & rRegressionStyle ); - virtual ~SchXMLEquationContext(); + virtual ~SchXMLEquationContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; diff --git a/xmloff/source/chart/SchXMLSeries2Context.cxx b/xmloff/source/chart/SchXMLSeries2Context.cxx index 5c1c9f18d41e..e4d8fe5654eb 100644 --- a/xmloff/source/chart/SchXMLSeries2Context.cxx +++ b/xmloff/source/chart/SchXMLSeries2Context.cxx @@ -73,7 +73,7 @@ public: sal_uInt16 nPrefix, const OUString& rLocalName, ::std::vector< OUString > & rAddresses ); - virtual ~SchXMLDomain2Context(); + virtual ~SchXMLDomain2Context() override; virtual void StartElement( const Reference< xml::sax::XAttributeList >& xAttrList ) override; }; diff --git a/xmloff/source/chart/SchXMLSeries2Context.hxx b/xmloff/source/chart/SchXMLSeries2Context.hxx index 03c723137a00..a546d2671535 100644 --- a/xmloff/source/chart/SchXMLSeries2Context.hxx +++ b/xmloff/source/chart/SchXMLSeries2Context.hxx @@ -83,7 +83,7 @@ public: tSchXMLLSequencesPerIndex & rLSequencesPerIndex, bool& rGlobalChartTypeUsedBySeries, const css::awt::Size & rChartSize ); - virtual ~SchXMLSeries2Context(); + virtual ~SchXMLSeries2Context() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual SvXMLImportContext* CreateChildContext( diff --git a/xmloff/source/chart/SchXMLTableContext.cxx b/xmloff/source/chart/SchXMLTableContext.cxx index 95c57cf0d267..343bb6ac7c67 100644 --- a/xmloff/source/chart/SchXMLTableContext.cxx +++ b/xmloff/source/chart/SchXMLTableContext.cxx @@ -597,7 +597,7 @@ public: sal_uInt16 nPrefix, const OUString& rLocalName, OUString& rRangeString ); - virtual ~SchXMLRangeSomewhereContext(); + virtual ~SchXMLRangeSomewhereContext() override; virtual SvXMLImportContext* CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/source/chart/SchXMLTableContext.hxx b/xmloff/source/chart/SchXMLTableContext.hxx index 6523facb0a01..af5f2b155c4c 100644 --- a/xmloff/source/chart/SchXMLTableContext.hxx +++ b/xmloff/source/chart/SchXMLTableContext.hxx @@ -51,7 +51,7 @@ public: SvXMLImport& rImport, const OUString& rLocalName, SchXMLTable& aTable ); - virtual ~SchXMLTableContext(); + virtual ~SchXMLTableContext() override; virtual SvXMLImportContext* CreateChildContext( sal_uInt16 nPrefix, @@ -95,7 +95,7 @@ public: SchXMLTableColumnsContext( SvXMLImport& rImport, const OUString& rLocalName, SchXMLTable& aTable ); - virtual ~SchXMLTableColumnsContext(); + virtual ~SchXMLTableColumnsContext() override; virtual SvXMLImportContext* CreateChildContext( sal_uInt16 nPrefix, @@ -112,7 +112,7 @@ public: SchXMLTableColumnContext( SvXMLImport& rImport, const OUString& rLocalName, SchXMLTable& aTable ); - virtual ~SchXMLTableColumnContext(); + virtual ~SchXMLTableColumnContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; @@ -129,7 +129,7 @@ public: SvXMLImport& rImport, const OUString& rLocalName, SchXMLTable& aTable ); - virtual ~SchXMLTableRowsContext(); + virtual ~SchXMLTableRowsContext() override; virtual SvXMLImportContext* CreateChildContext( sal_uInt16 nPrefix, @@ -148,7 +148,7 @@ public: SvXMLImport& rImport, const OUString& rLocalName, SchXMLTable& aTable ); - virtual ~SchXMLTableRowContext(); + virtual ~SchXMLTableRowContext() override; virtual SvXMLImportContext* CreateChildContext( sal_uInt16 nPrefix, @@ -172,7 +172,7 @@ public: SvXMLImport& rImport, const OUString& rLocalName, SchXMLTable& aTable ); - virtual ~SchXMLTableCellContext(); + virtual ~SchXMLTableCellContext() override; virtual SvXMLImportContext* CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/source/chart/SchXMLTextListContext.cxx b/xmloff/source/chart/SchXMLTextListContext.cxx index e4a4ee06d162..5268d1b369e1 100644 --- a/xmloff/source/chart/SchXMLTextListContext.cxx +++ b/xmloff/source/chart/SchXMLTextListContext.cxx @@ -34,7 +34,7 @@ class SchXMLListItemContext : public SvXMLImportContext { public: SchXMLListItemContext( SvXMLImport& rImport, const OUString& rLocalName, OUString& rText ); - virtual ~SchXMLListItemContext(); + virtual ~SchXMLListItemContext() override; virtual void StartElement( const Reference< xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/chart/SchXMLTextListContext.hxx b/xmloff/source/chart/SchXMLTextListContext.hxx index f6f97bfcd5ef..87c52345bfbe 100644 --- a/xmloff/source/chart/SchXMLTextListContext.hxx +++ b/xmloff/source/chart/SchXMLTextListContext.hxx @@ -33,7 +33,7 @@ public: SchXMLTextListContext( SvXMLImport& rImport, const OUString& rLocalName, css::uno::Sequence< OUString>& rTextList ); - virtual ~SchXMLTextListContext(); + virtual ~SchXMLTextListContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/chart/XMLAxisPositionPropertyHdl.hxx b/xmloff/source/chart/XMLAxisPositionPropertyHdl.hxx index 3c845d372fda..485b7a89c379 100644 --- a/xmloff/source/chart/XMLAxisPositionPropertyHdl.hxx +++ b/xmloff/source/chart/XMLAxisPositionPropertyHdl.hxx @@ -25,7 +25,7 @@ class XMLAxisPositionPropertyHdl : public XMLPropertyHandler { public: explicit XMLAxisPositionPropertyHdl( bool bCrossingValue ); - virtual ~XMLAxisPositionPropertyHdl(); + virtual ~XMLAxisPositionPropertyHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/chart/XMLChartPropertyContext.hxx b/xmloff/source/chart/XMLChartPropertyContext.hxx index 6f139cd174a1..7f888c2040cd 100644 --- a/xmloff/source/chart/XMLChartPropertyContext.hxx +++ b/xmloff/source/chart/XMLChartPropertyContext.hxx @@ -31,7 +31,7 @@ public: sal_uInt32 nFamily, ::std::vector< XMLPropertyState >& rProps, const rtl::Reference< SvXMLImportPropertyMapper >& rMapper ); - virtual ~XMLChartPropertyContext(); + virtual ~XMLChartPropertyContext() override; using SvXMLPropertySetContext::CreateChildContext; virtual SvXMLImportContext* CreateChildContext( diff --git a/xmloff/source/chart/XMLErrorBarStylePropertyHdl.hxx b/xmloff/source/chart/XMLErrorBarStylePropertyHdl.hxx index f06d305848d0..b7c0c01ece7c 100644 --- a/xmloff/source/chart/XMLErrorBarStylePropertyHdl.hxx +++ b/xmloff/source/chart/XMLErrorBarStylePropertyHdl.hxx @@ -25,7 +25,7 @@ class XMLErrorBarStylePropertyHdl : public XMLEnumPropertyHdl { public: XMLErrorBarStylePropertyHdl( const SvXMLEnumMapEntry* pEnumMap, const css::uno::Type & rType ); - virtual ~XMLErrorBarStylePropertyHdl(); + virtual ~XMLErrorBarStylePropertyHdl() override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; }; diff --git a/xmloff/source/chart/XMLErrorIndicatorPropertyHdl.hxx b/xmloff/source/chart/XMLErrorIndicatorPropertyHdl.hxx index 2ce64cc86caf..6e4de8706283 100644 --- a/xmloff/source/chart/XMLErrorIndicatorPropertyHdl.hxx +++ b/xmloff/source/chart/XMLErrorIndicatorPropertyHdl.hxx @@ -29,7 +29,7 @@ private: public: explicit XMLErrorIndicatorPropertyHdl( bool bUpper ) : mbUpperIndicator( bUpper ) {} - virtual ~XMLErrorIndicatorPropertyHdl(); + virtual ~XMLErrorIndicatorPropertyHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/chart/XMLLabelSeparatorContext.hxx b/xmloff/source/chart/XMLLabelSeparatorContext.hxx index 9cd1b6c29516..641787c5e7ec 100644 --- a/xmloff/source/chart/XMLLabelSeparatorContext.hxx +++ b/xmloff/source/chart/XMLLabelSeparatorContext.hxx @@ -29,7 +29,7 @@ public: const OUString& rLName, const XMLPropertyState& rProp, ::std::vector< XMLPropertyState > &rProps ); - virtual ~XMLLabelSeparatorContext(); + virtual ~XMLLabelSeparatorContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual SvXMLImportContext *CreateChildContext( diff --git a/xmloff/source/chart/XMLSymbolImageContext.hxx b/xmloff/source/chart/XMLSymbolImageContext.hxx index 3b0d20d38a20..9e9a8a4dfe02 100644 --- a/xmloff/source/chart/XMLSymbolImageContext.hxx +++ b/xmloff/source/chart/XMLSymbolImageContext.hxx @@ -33,7 +33,7 @@ public: const OUString& rLName, const XMLPropertyState& rProp, ::std::vector< XMLPropertyState > &rProps ); - virtual ~XMLSymbolImageContext(); + virtual ~XMLSymbolImageContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual SvXMLImportContext *CreateChildContext( diff --git a/xmloff/source/chart/XMLSymbolTypePropertyHdl.hxx b/xmloff/source/chart/XMLSymbolTypePropertyHdl.hxx index 009198e53cbb..475463a5943b 100644 --- a/xmloff/source/chart/XMLSymbolTypePropertyHdl.hxx +++ b/xmloff/source/chart/XMLSymbolTypePropertyHdl.hxx @@ -25,7 +25,7 @@ class XMLSymbolTypePropertyHdl : public XMLPropertyHandler { public: explicit XMLSymbolTypePropertyHdl( bool bIsNamedSymbol ); - virtual ~XMLSymbolTypePropertyHdl(); + virtual ~XMLSymbolTypePropertyHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/chart/XMLTextOrientationHdl.hxx b/xmloff/source/chart/XMLTextOrientationHdl.hxx index da7d0b37f100..2a2cd95f91fa 100644 --- a/xmloff/source/chart/XMLTextOrientationHdl.hxx +++ b/xmloff/source/chart/XMLTextOrientationHdl.hxx @@ -25,7 +25,7 @@ class XMLTextOrientationHdl : public XMLPropertyHandler { private: public: - virtual ~XMLTextOrientationHdl(); + virtual ~XMLTextOrientationHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, diff --git a/xmloff/source/chart/contexts.cxx b/xmloff/source/chart/contexts.cxx index fe73372b4fa3..484edf3b0de9 100644 --- a/xmloff/source/chart/contexts.cxx +++ b/xmloff/source/chart/contexts.cxx @@ -41,7 +41,7 @@ public: SchXMLBodyContext_Impl( SchXMLImportHelper& rImpHelper, SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName ); - virtual ~SchXMLBodyContext_Impl(); + virtual ~SchXMLBodyContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/chart/contexts.hxx b/xmloff/source/chart/contexts.hxx index b4b7c0397c49..8c9a561d3bba 100644 --- a/xmloff/source/chart/contexts.hxx +++ b/xmloff/source/chart/contexts.hxx @@ -47,7 +47,7 @@ public: SvXMLImport& rImport, sal_uInt16 nPrefix, const OUString& rLName ); - virtual ~SchXMLDocContext(); + virtual ~SchXMLDocContext() override; virtual SvXMLImportContext* CreateChildContext( @@ -67,7 +67,7 @@ public: sal_uInt16 i_nPrefix, const OUString & i_rLName, const css::uno::Reference<css::document::XDocumentProperties>& i_xDocProps); - virtual ~SchXMLFlatDocContext_Impl(); + virtual ~SchXMLFlatDocContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 i_nPrefix, const OUString& i_rLocalName, @@ -85,7 +85,7 @@ public: SvXMLImport& rImport, sal_uInt16 nPrefix, const OUString& rLName ); - virtual ~SchXMLBodyContext(); + virtual ~SchXMLBodyContext() override; virtual void EndElement() override; virtual SvXMLImportContext* CreateChildContext( diff --git a/xmloff/source/core/DocumentSettingsContext.cxx b/xmloff/source/core/DocumentSettingsContext.cxx index 38f8e4f3c611..aa5a9ed05b3b 100644 --- a/xmloff/source/core/DocumentSettingsContext.cxx +++ b/xmloff/source/core/DocumentSettingsContext.cxx @@ -130,7 +130,7 @@ public: XMLConfigBaseContext(SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, css::uno::Any& rAny, XMLConfigBaseContext* pBaseContext); - virtual ~XMLConfigBaseContext(); + virtual ~XMLConfigBaseContext() override; void AddPropertyValue() { maProps.push_back(maProp); } }; @@ -150,7 +150,7 @@ public: css::uno::Any& rAny, const OUString& rItemName, XMLConfigBaseContext* pBaseContext); - virtual ~XMLConfigItemContext(); + virtual ~XMLConfigItemContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -169,7 +169,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Any& rAny, XMLConfigBaseContext* pBaseContext); - virtual ~XMLConfigItemSetContext(); + virtual ~XMLConfigItemSetContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -185,7 +185,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Any& rAny, XMLConfigBaseContext* pBaseContext); - virtual ~XMLConfigItemMapNamedContext(); + virtual ~XMLConfigItemMapNamedContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -206,7 +206,7 @@ public: css::uno::Any& rAny, const OUString& rConfigItemName, XMLConfigBaseContext* pBaseContext); - virtual ~XMLConfigItemMapIndexedContext(); + virtual ~XMLConfigItemMapIndexedContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/core/DomExport.cxx b/xmloff/source/core/DomExport.cxx index 8f323b59b000..f271e3c3bdb3 100644 --- a/xmloff/source/core/DomExport.cxx +++ b/xmloff/source/core/DomExport.cxx @@ -136,7 +136,7 @@ class DomExport: public DomVisitor public: explicit DomExport( SvXMLExport& rExport ); - virtual ~DomExport(); + virtual ~DomExport() override; virtual void element( const Reference<XElement>& ) override; virtual void endElement( const Reference<XElement>& ) override; diff --git a/xmloff/source/core/PropertySetMerger.cxx b/xmloff/source/core/PropertySetMerger.cxx index e9e14144a037..6bda9b82e4b8 100644 --- a/xmloff/source/core/PropertySetMerger.cxx +++ b/xmloff/source/core/PropertySetMerger.cxx @@ -40,7 +40,7 @@ private: public: PropertySetMergerImpl( const Reference< XPropertySet > & rPropSet1, const Reference< XPropertySet > & rPropSet2 ); - virtual ~PropertySetMergerImpl(); + virtual ~PropertySetMergerImpl() override; // XPropertySet virtual Reference< XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(RuntimeException, std::exception) override; diff --git a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx index d853006362aa..b2637a972160 100644 --- a/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx +++ b/xmloff/source/core/XMLEmbeddedObjectImportContext.cxx @@ -78,7 +78,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XDocumentHandler >& rHandler ); - virtual ~XMLEmbeddedObjectImportContext_Impl(); + virtual ~XMLEmbeddedObjectImportContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index 2123dff241d4..6758df226d24 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -213,7 +213,7 @@ private: public: explicit SvXMLExportEventListener(SvXMLExport* pExport); - virtual ~SvXMLExportEventListener(); + virtual ~SvXMLExportEventListener() override; // XEventListener virtual void SAL_CALL disposing(const lang::EventObject& rEventObject) throw(css::uno::RuntimeException, std::exception) override; diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx index 87adeecd75eb..5ef0b36ef303 100644 --- a/xmloff/source/core/xmlimp.cxx +++ b/xmloff/source/core/xmlimp.cxx @@ -115,7 +115,7 @@ private: public: explicit SvXMLImportEventListener(SvXMLImport* pImport); - virtual ~SvXMLImportEventListener(); + virtual ~SvXMLImportEventListener() override; // XEventListener virtual void SAL_CALL disposing(const lang::EventObject& rEventObject) throw(css::uno::RuntimeException, std::exception) override; diff --git a/xmloff/source/draw/XMLImageMapContext.cxx b/xmloff/source/draw/XMLImageMapContext.cxx index ef37224a45ee..068643cc3aa0 100644 --- a/xmloff/source/draw/XMLImageMapContext.cxx +++ b/xmloff/source/draw/XMLImageMapContext.cxx @@ -311,7 +311,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::container::XIndexContainer> const & xMap); - virtual ~XMLImageMapRectangleContext(); + virtual ~XMLImageMapRectangleContext() override; protected: virtual void ProcessAttribute( @@ -413,7 +413,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::container::XIndexContainer> const & xMap); - virtual ~XMLImageMapPolygonContext(); + virtual ~XMLImageMapPolygonContext() override; protected: virtual void ProcessAttribute( @@ -502,7 +502,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::container::XIndexContainer> const & xMap); - virtual ~XMLImageMapCircleContext(); + virtual ~XMLImageMapCircleContext() override; protected: virtual void ProcessAttribute( diff --git a/xmloff/source/draw/XMLNumberStyles.cxx b/xmloff/source/draw/XMLNumberStyles.cxx index b6b71d3e898b..82802c78ad26 100644 --- a/xmloff/source/draw/XMLNumberStyles.cxx +++ b/xmloff/source/draw/XMLNumberStyles.cxx @@ -495,7 +495,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, SdXMLNumberFormatImportContext* pParent, SvXMLImportContext* pSlaveContext ); - virtual ~SdXMLNumberFormatMemberImportContext(); + virtual ~SdXMLNumberFormatMemberImportContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/draw/animationimport.cxx b/xmloff/source/draw/animationimport.cxx index 102457a43672..1f7e0f0bdb09 100644 --- a/xmloff/source/draw/animationimport.cxx +++ b/xmloff/source/draw/animationimport.cxx @@ -1239,7 +1239,7 @@ class AnimationsImport: public SvXMLImport, public XAnimationNodeSupplier { public: explicit AnimationsImport( const Reference< XComponentContext > & rxContext ); - virtual ~AnimationsImport() throw (); + virtual ~AnimationsImport() throw () override; SvXMLImportContext* CreateContext(sal_uInt16 nPrefix, const OUString& rLocalName, const Reference<XAttributeList>& xAttrList) override; diff --git a/xmloff/source/draw/animimp.cxx b/xmloff/source/draw/animimp.cxx index 6ba0a22b9e44..6b117e34ff6e 100644 --- a/xmloff/source/draw/animimp.cxx +++ b/xmloff/source/draw/animimp.cxx @@ -384,7 +384,7 @@ public: const OUString& rLocalName, const Reference< XAttributeList >& xAttrList, const std::shared_ptr<AnimImpImpl>& pImpl); - virtual ~XMLAnimationsEffectContext(); + virtual ~XMLAnimationsEffectContext() override; virtual void EndElement() override; @@ -399,7 +399,7 @@ class XMLAnimationsSoundContext : public SvXMLImportContext public: XMLAnimationsSoundContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList, XMLAnimationsEffectContext* pParent ); - virtual ~XMLAnimationsSoundContext(); + virtual ~XMLAnimationsSoundContext() override; }; diff --git a/xmloff/source/draw/descriptionimp.hxx b/xmloff/source/draw/descriptionimp.hxx index cc2eca055e3f..0a57ca70fcf1 100644 --- a/xmloff/source/draw/descriptionimp.hxx +++ b/xmloff/source/draw/descriptionimp.hxx @@ -37,7 +37,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, const css::uno::Reference< css::drawing::XShape >& rxShape ); - virtual ~SdXMLDescriptionContext(); + virtual ~SdXMLDescriptionContext() override; virtual void EndElement() override; diff --git a/xmloff/source/draw/eventimp.cxx b/xmloff/source/draw/eventimp.cxx index a4dbc2f4e5f0..bcac08728433 100644 --- a/xmloff/source/draw/eventimp.cxx +++ b/xmloff/source/draw/eventimp.cxx @@ -78,7 +78,7 @@ private: public: SdXMLEventContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const Reference< XAttributeList>& xAttrList, const Reference< XShape >& rxShape ); - virtual ~SdXMLEventContext(); + virtual ~SdXMLEventContext() override; virtual SvXMLImportContext * CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< XAttributeList>& xAttrList ) override; virtual void EndElement() override; @@ -105,7 +105,7 @@ class XMLEventSoundContext : public SvXMLImportContext public: XMLEventSoundContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList, SdXMLEventContext* pParent ); - virtual ~XMLEventSoundContext(); + virtual ~XMLEventSoundContext() override; }; diff --git a/xmloff/source/draw/eventimp.hxx b/xmloff/source/draw/eventimp.hxx index ff875b376cc5..cf2e2b04c3ad 100644 --- a/xmloff/source/draw/eventimp.hxx +++ b/xmloff/source/draw/eventimp.hxx @@ -37,7 +37,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, const css::uno::Reference< css::drawing::XShape >& rxShape ); - virtual ~SdXMLEventsContext(); + virtual ~SdXMLEventsContext() override; virtual SvXMLImportContext * CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ) override; diff --git a/xmloff/source/draw/layerimp.cxx b/xmloff/source/draw/layerimp.cxx index cc29145e65bd..065d6eec7b7b 100644 --- a/xmloff/source/draw/layerimp.cxx +++ b/xmloff/source/draw/layerimp.cxx @@ -52,7 +52,7 @@ class SdXMLLayerContext : public SvXMLImportContext { public: SdXMLLayerContext( SvXMLImport& rImport, sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList, const Reference< XNameAccess >& xLayerManager ); - virtual ~SdXMLLayerContext(); + virtual ~SdXMLLayerContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/draw/layerimp.hxx b/xmloff/source/draw/layerimp.hxx index 6538f6a0d088..882f5cb3dd55 100644 --- a/xmloff/source/draw/layerimp.hxx +++ b/xmloff/source/draw/layerimp.hxx @@ -36,7 +36,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList); - virtual ~SdXMLLayerSetContext(); + virtual ~SdXMLLayerSetContext() override; virtual SvXMLImportContext * CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ) override; diff --git a/xmloff/source/draw/numithdl.hxx b/xmloff/source/draw/numithdl.hxx index 0ea5cfa0b51d..3decd01f471b 100644 --- a/xmloff/source/draw/numithdl.hxx +++ b/xmloff/source/draw/numithdl.hxx @@ -32,7 +32,7 @@ private: css::uno::Reference< css::ucb::XAnyCompare > mxNumRuleCompare; public: explicit XMLNumRulePropHdl( css::uno::Reference< css::ucb::XAnyCompare > const & xNumRuleCompare ); - virtual ~XMLNumRulePropHdl(); + virtual ~XMLNumRulePropHdl() override; virtual bool equals( const css::uno::Any& r1, const css::uno::Any& r2 ) const override; diff --git a/xmloff/source/draw/propimp0.hxx b/xmloff/source/draw/propimp0.hxx index ce351d0ecb7c..101e36bf4d10 100644 --- a/xmloff/source/draw/propimp0.hxx +++ b/xmloff/source/draw/propimp0.hxx @@ -27,7 +27,7 @@ class XMLDurationPropertyHdl : public XMLPropertyHandler { public: - virtual ~XMLDurationPropertyHdl(); + virtual ~XMLDurationPropertyHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; }; @@ -39,7 +39,7 @@ private: SvXMLImport* mpImport; public: explicit XMLOpacityPropertyHdl( SvXMLImport* pImport ); - virtual ~XMLOpacityPropertyHdl(); + virtual ~XMLOpacityPropertyHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; }; @@ -47,7 +47,7 @@ public: class XMLTextAnimationStepPropertyHdl : public XMLPropertyHandler { public: - virtual ~XMLTextAnimationStepPropertyHdl(); + virtual ~XMLTextAnimationStepPropertyHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; }; @@ -60,7 +60,7 @@ private: public: explicit XMLDateTimeFormatHdl( SvXMLExport* pExport ); - virtual ~XMLDateTimeFormatHdl(); + virtual ~XMLDateTimeFormatHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; }; diff --git a/xmloff/source/draw/sdpropls.cxx b/xmloff/source/draw/sdpropls.cxx index 19fcd4228291..d950505895d3 100644 --- a/xmloff/source/draw/sdpropls.cxx +++ b/xmloff/source/draw/sdpropls.cxx @@ -810,7 +810,7 @@ bool XMLMoveSizeProtectHdl::exportXML( OUString& rStrExpValue, const Any& rValue class XMLSdHeaderFooterVisibilityTypeHdl : public XMLPropertyHandler { public: - virtual ~XMLSdHeaderFooterVisibilityTypeHdl(); + virtual ~XMLSdHeaderFooterVisibilityTypeHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/draw/sdpropls.hxx b/xmloff/source/draw/sdpropls.hxx index 522b341a990d..5e91313efdfa 100644 --- a/xmloff/source/draw/sdpropls.hxx +++ b/xmloff/source/draw/sdpropls.hxx @@ -62,7 +62,7 @@ private: public: XMLSdPropHdlFactory( css::uno::Reference< css::frame::XModel > const & xModel, SvXMLExport& rExport ); XMLSdPropHdlFactory( css::uno::Reference< css::frame::XModel > const & xModel, SvXMLImport& rImport ); - virtual ~XMLSdPropHdlFactory(); + virtual ~XMLSdPropHdlFactory() override; virtual const XMLPropertyHandler* GetPropertyHandler( sal_Int32 nType ) const override; }; @@ -70,7 +70,7 @@ class XMLShapePropertySetMapper : public XMLPropertySetMapper { public: XMLShapePropertySetMapper(const rtl::Reference< XMLPropertyHandlerFactory >& rFactoryRef, bool bForExport); - virtual ~XMLShapePropertySetMapper(); + virtual ~XMLShapePropertySetMapper() override; }; class XMLShapeExportPropertyMapper : public SvXMLExportPropertyMapper @@ -86,7 +86,7 @@ protected: const css::uno::Reference< css::beans::XPropertySet >& rPropSet ) const override; public: XMLShapeExportPropertyMapper( const rtl::Reference< XMLPropertySetMapper >& rMapper, SvXMLExport& rExport ); - virtual ~XMLShapeExportPropertyMapper(); + virtual ~XMLShapeExportPropertyMapper() override; virtual void handleElementItem( SvXMLExport& rExport, @@ -119,7 +119,7 @@ protected: const css::uno::Reference< css::beans::XPropertySet >& rPropSet ) const override; public: XMLPageExportPropertyMapper( const rtl::Reference< XMLPropertySetMapper >& rMapper, SvXMLExport& rExport ); - virtual ~XMLPageExportPropertyMapper(); + virtual ~XMLPageExportPropertyMapper() override; virtual void handleElementItem( SvXMLExport& rExport, diff --git a/xmloff/source/draw/sdxmlexp_impl.hxx b/xmloff/source/draw/sdxmlexp_impl.hxx index a69bddebc506..3764ceebb54e 100644 --- a/xmloff/source/draw/sdxmlexp_impl.hxx +++ b/xmloff/source/draw/sdxmlexp_impl.hxx @@ -163,7 +163,7 @@ public: const css::uno::Reference< css::uno::XComponentContext >& xContext, OUString const & implementationName, bool bIsDraw, SvXMLExportFlags nExportFlags = SvXMLExportFlags::ALL ); - virtual ~SdXMLExport(); + virtual ~SdXMLExport() override; void SetProgress(sal_Int32 nProg); diff --git a/xmloff/source/draw/sdxmlimp.cxx b/xmloff/source/draw/sdxmlimp.cxx index 80539893d2c4..fa523c29b1cd 100644 --- a/xmloff/source/draw/sdxmlimp.cxx +++ b/xmloff/source/draw/sdxmlimp.cxx @@ -61,7 +61,7 @@ public: SdXMLBodyContext_Impl( SdXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const uno::Reference< xml::sax::XAttributeList > & xAttrList ); - virtual ~SdXMLBodyContext_Impl(); + virtual ~SdXMLBodyContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -100,7 +100,7 @@ public: sal_uInt16 nPrfx, const OUString& rLName, const uno::Reference<xml::sax::XAttributeList>& xAttrList); - virtual ~SdXMLDocContext_Impl(); + virtual ~SdXMLDocContext_Impl() override; virtual SvXMLImportContext *CreateChildContext(sal_uInt16 nPrefix, @@ -215,7 +215,7 @@ public: const uno::Reference<xml::sax::XAttributeList>& i_xAttrList, const uno::Reference<document::XDocumentProperties>& i_xDocProps); - virtual ~SdXMLFlatDocContext_Impl(); + virtual ~SdXMLFlatDocContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 i_nPrefix, const OUString& i_rLocalName, diff --git a/xmloff/source/draw/ximp3dobject.hxx b/xmloff/source/draw/ximp3dobject.hxx index cf4b13669c1a..6527aa345b3f 100644 --- a/xmloff/source/draw/ximp3dobject.hxx +++ b/xmloff/source/draw/ximp3dobject.hxx @@ -46,7 +46,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXML3DObjectContext(); + virtual ~SdXML3DObjectContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; }; @@ -66,7 +66,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXML3DCubeObjectShapeContext(); + virtual ~SdXML3DCubeObjectShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; virtual void EndElement() override; @@ -87,7 +87,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXML3DSphereObjectShapeContext(); + virtual ~SdXML3DSphereObjectShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; virtual void EndElement() override; @@ -106,7 +106,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXML3DPolygonBasedShapeContext(); + virtual ~SdXML3DPolygonBasedShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; virtual void EndElement() override; @@ -122,7 +122,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXML3DLatheObjectShapeContext(); + virtual ~SdXML3DLatheObjectShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; virtual void EndElement() override; @@ -138,7 +138,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXML3DExtrudeObjectShapeContext(); + virtual ~SdXML3DExtrudeObjectShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; virtual void EndElement() override; diff --git a/xmloff/source/draw/ximp3dscene.hxx b/xmloff/source/draw/ximp3dscene.hxx index 18c89b385c09..6a3ef0fccd51 100644 --- a/xmloff/source/draw/ximp3dscene.hxx +++ b/xmloff/source/draw/ximp3dscene.hxx @@ -43,7 +43,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXML3DSceneShapeContext(); + virtual ~SdXML3DSceneShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; virtual void EndElement() override; diff --git a/xmloff/source/draw/ximpbody.hxx b/xmloff/source/draw/ximpbody.hxx index 95358cfc3bce..7494b73aa815 100644 --- a/xmloff/source/draw/ximpbody.hxx +++ b/xmloff/source/draw/ximpbody.hxx @@ -41,7 +41,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLDrawPageContext(); + virtual ~SdXMLDrawPageContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -59,7 +59,7 @@ class SdXMLBodyContext : public SvXMLImportContext public: SdXMLBodyContext( SdXMLImport& rImport, const OUString& rLocalName ); - virtual ~SdXMLBodyContext(); + virtual ~SdXMLBodyContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/draw/ximpgrp.hxx b/xmloff/source/draw/ximpgrp.hxx index 5e8442909319..5f57a2d208f1 100644 --- a/xmloff/source/draw/ximpgrp.hxx +++ b/xmloff/source/draw/ximpgrp.hxx @@ -39,7 +39,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLGroupShapeContext(); + virtual ~SdXMLGroupShapeContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/draw/ximplink.hxx b/xmloff/source/draw/ximplink.hxx index 187cda328f34..8960d4d8f818 100644 --- a/xmloff/source/draw/ximplink.hxx +++ b/xmloff/source/draw/ximplink.hxx @@ -42,7 +42,7 @@ public: SdXMLShapeLinkContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLShapeLinkContext(); + virtual ~SdXMLShapeLinkContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/draw/ximpnote.hxx b/xmloff/source/draw/ximpnote.hxx index 5da731fdddfa..ace197b6e0a8 100644 --- a/xmloff/source/draw/ximpnote.hxx +++ b/xmloff/source/draw/ximpnote.hxx @@ -37,7 +37,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLNotesContext(); + virtual ~SdXMLNotesContext() override; }; #endif // INCLUDED_XMLOFF_SOURCE_DRAW_XIMPNOTE_HXX diff --git a/xmloff/source/draw/ximppage.hxx b/xmloff/source/draw/ximppage.hxx index a3bebae61f0d..21cce5b8ca41 100644 --- a/xmloff/source/draw/ximppage.hxx +++ b/xmloff/source/draw/ximppage.hxx @@ -64,7 +64,7 @@ public: SdXMLGenericPageContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLGenericPageContext(); + virtual ~SdXMLGenericPageContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual SvXMLImportContext *CreateChildContext( diff --git a/xmloff/source/draw/ximpshap.hxx b/xmloff/source/draw/ximpshap.hxx index a6ce95d8fce0..540abd3bcb64 100644 --- a/xmloff/source/draw/ximpshap.hxx +++ b/xmloff/source/draw/ximpshap.hxx @@ -107,7 +107,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLShapeContext(); + virtual ~SdXMLShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; virtual void EndElement() override; @@ -136,7 +136,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLRectShapeContext(); + virtual ~SdXMLRectShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -159,7 +159,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLLineShapeContext(); + virtual ~SdXMLLineShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -185,7 +185,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLEllipseShapeContext(); + virtual ~SdXMLEllipseShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -206,7 +206,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bClosed, bool bTemporaryShape); - virtual ~SdXMLPolygonShapeContext(); + virtual ~SdXMLPolygonShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -227,7 +227,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLPathShapeContext(); + virtual ~SdXMLPathShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -247,7 +247,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLTextBoxShapeContext(); + virtual ~SdXMLTextBoxShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -268,7 +268,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLControlShapeContext(); + virtual ~SdXMLControlShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -303,7 +303,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLConnectorShapeContext(); + virtual ~SdXMLConnectorShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -325,7 +325,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLMeasureShapeContext(); + virtual ~SdXMLMeasureShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; virtual void EndElement() override; @@ -346,7 +346,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLPageShapeContext(); + virtual ~SdXMLPageShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -368,7 +368,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLCaptionShapeContext(); + virtual ~SdXMLCaptionShapeContext() override; virtual void StartElement(const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList) override; // this is called from the parent group for each unparsed attribute in the attribute list @@ -389,7 +389,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLGraphicObjectShapeContext(); + virtual ~SdXMLGraphicObjectShapeContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -437,7 +437,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLObjectShapeContext(); + virtual ~SdXMLObjectShapeContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -467,7 +467,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLAppletShapeContext(); + virtual ~SdXMLAppletShapeContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -496,7 +496,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLPluginShapeContext(); + virtual ~SdXMLPluginShapeContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -526,7 +526,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLFloatingFrameShapeContext(); + virtual ~SdXMLFloatingFrameShapeContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -556,7 +556,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes, bool bTemporaryShape); - virtual ~SdXMLFrameShapeContext(); + virtual ~SdXMLFrameShapeContext() override; virtual SvXMLImportContext * CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ) override; @@ -583,7 +583,7 @@ public: SdXMLCustomShapeContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLCustomShapeContext(); + virtual ~SdXMLCustomShapeContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ) override; virtual void EndElement() override; @@ -605,7 +605,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes ); - virtual ~SdXMLTableShapeContext(); + virtual ~SdXMLTableShapeContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/draw/ximpshow.hxx b/xmloff/source/draw/ximpshow.hxx index 865c508129c8..af59f8eec008 100644 --- a/xmloff/source/draw/ximpshow.hxx +++ b/xmloff/source/draw/ximpshow.hxx @@ -38,7 +38,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList); - virtual ~SdXMLShowsContext(); + virtual ~SdXMLShowsContext() override; virtual SvXMLImportContext * CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ) override; diff --git a/xmloff/source/draw/ximpstyl.cxx b/xmloff/source/draw/ximpstyl.cxx index 2533f27a6901..43676dd1078f 100644 --- a/xmloff/source/draw/ximpstyl.cxx +++ b/xmloff/source/draw/ximpstyl.cxx @@ -63,7 +63,7 @@ public: ::std::vector< XMLPropertyState > &rProps, const rtl::Reference < SvXMLImportPropertyMapper > &rMap ); - virtual ~SdXMLDrawingPagePropertySetContext(); + virtual ~SdXMLDrawingPagePropertySetContext() override; using SvXMLPropertySetContext::CreateChildContext; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, @@ -138,7 +138,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList, SvXMLStylesContext& rStyles, sal_uInt16 nFamily = XML_STYLE_FAMILY_SD_DRAWINGPAGE_ID); - virtual ~SdXMLDrawingPageStyleContext(); + virtual ~SdXMLDrawingPageStyleContext() override; SvXMLImportContext * CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/source/draw/ximpstyl.hxx b/xmloff/source/draw/ximpstyl.hxx index 867f5b3fff39..c40d4d98b652 100644 --- a/xmloff/source/draw/ximpstyl.hxx +++ b/xmloff/source/draw/ximpstyl.hxx @@ -53,7 +53,7 @@ public: sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList); - virtual ~SdXMLPageMasterStyleContext(); + virtual ~SdXMLPageMasterStyleContext() override; sal_Int32 GetBorderBottom() const { return mnBorderBottom; } sal_Int32 GetBorderLeft() const { return mnBorderLeft; } @@ -106,7 +106,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList, css::uno::Reference< css::drawing::XShapes >& rShapes); - virtual ~SdXMLMasterPageContext(); + virtual ~SdXMLMasterPageContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -137,7 +137,7 @@ public: sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList); - virtual ~SdXMLPresentationPlaceholderContext(); + virtual ~SdXMLPresentationPlaceholderContext() override; const OUString& GetName() const { return msName; } sal_Int32 GetX() const { return mnX; } diff --git a/xmloff/source/forms/attriblistmerge.hxx b/xmloff/source/forms/attriblistmerge.hxx index e2d24f52fe90..5b36df0b9e58 100644 --- a/xmloff/source/forms/attriblistmerge.hxx +++ b/xmloff/source/forms/attriblistmerge.hxx @@ -44,7 +44,7 @@ namespace xmloff typedef std::vector< css::uno::Reference< css::xml::sax::XAttributeList > > AttributeListArray; AttributeListArray m_aLists; - virtual ~OAttribListMerger() { } + virtual ~OAttribListMerger() override { } public: OAttribListMerger() { } diff --git a/xmloff/source/forms/elementexport.hxx b/xmloff/source/forms/elementexport.hxx index 665c0d90d2c7..ca32768652c6 100644 --- a/xmloff/source/forms/elementexport.hxx +++ b/xmloff/source/forms/elementexport.hxx @@ -271,7 +271,7 @@ namespace xmloff const OUString& _rControlId, const css::uno::Sequence< css::script::ScriptEventDescriptor >& _rxEvents); - virtual ~OColumnExport(); + virtual ~OColumnExport() override; protected: // OControlExport overridables diff --git a/xmloff/source/forms/elementimport.hxx b/xmloff/source/forms/elementimport.hxx index 4c3cde521765..9c4f0a06ec99 100644 --- a/xmloff/source/forms/elementimport.hxx +++ b/xmloff/source/forms/elementimport.hxx @@ -110,7 +110,7 @@ namespace xmloff sal_uInt16 _nPrefix, const OUString& _rName, const css::uno::Reference< css::container::XNameContainer >& _rxParentContainer ); - virtual ~OElementImport(); + virtual ~OElementImport() override; protected: // SvXMLImportContext overridables diff --git a/xmloff/source/forms/gridcolumnproptranslator.cxx b/xmloff/source/forms/gridcolumnproptranslator.cxx index 601aec111066..8ac82ee9b186 100644 --- a/xmloff/source/forms/gridcolumnproptranslator.cxx +++ b/xmloff/source/forms/gridcolumnproptranslator.cxx @@ -124,7 +124,7 @@ namespace xmloff explicit OMergedPropertySetInfo( const Reference< XPropertySetInfo >& _rxMasterInfo ); protected: - virtual ~OMergedPropertySetInfo(); + virtual ~OMergedPropertySetInfo() override; // XPropertySetInfo virtual css::uno::Sequence< css::beans::Property > SAL_CALL getProperties( ) throw (css::uno::RuntimeException, std::exception) override; diff --git a/xmloff/source/forms/gridcolumnproptranslator.hxx b/xmloff/source/forms/gridcolumnproptranslator.hxx index b0aad99af99a..5d66f671e35f 100644 --- a/xmloff/source/forms/gridcolumnproptranslator.hxx +++ b/xmloff/source/forms/gridcolumnproptranslator.hxx @@ -43,7 +43,7 @@ namespace xmloff ); protected: - virtual ~OGridColumnPropertyTranslator(); + virtual ~OGridColumnPropertyTranslator() override; // XPropertySet virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw (css::uno::RuntimeException, std::exception) override; diff --git a/xmloff/source/forms/officeforms.hxx b/xmloff/source/forms/officeforms.hxx index fbf5c701fc73..2279f3dc8a32 100644 --- a/xmloff/source/forms/officeforms.hxx +++ b/xmloff/source/forms/officeforms.hxx @@ -39,7 +39,7 @@ namespace xmloff public: OFormsRootImport( SvXMLImport& _rImport, sal_uInt16 _nPrfx, const OUString& _rLocalName); - virtual ~OFormsRootImport(); + virtual ~OFormsRootImport() override; // SvXMLImportContext overridable virtual SvXMLImportContext * CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/meta/MetaImportComponent.cxx b/xmloff/source/meta/MetaImportComponent.cxx index c9af8afc01fd..24ef1cffeee1 100644 --- a/xmloff/source/meta/MetaImportComponent.cxx +++ b/xmloff/source/meta/MetaImportComponent.cxx @@ -41,7 +41,7 @@ public: const css::uno::Reference< css::uno::XComponentContext >& xContext ) throw(); - virtual ~XMLMetaImportComponent() throw(); + virtual ~XMLMetaImportComponent() throw() override; protected: diff --git a/xmloff/source/meta/xmlmetai.cxx b/xmloff/source/meta/xmlmetai.cxx index 5ad8aafca01e..e293ab4fca78 100644 --- a/xmloff/source/meta/xmlmetai.cxx +++ b/xmloff/source/meta/xmlmetai.cxx @@ -45,7 +45,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList, const css::uno::Reference< css::xml::dom::XSAXDocumentBuilder2>& rDocBuilder); - virtual ~XMLDocumentBuilderContext(); + virtual ~XMLDocumentBuilderContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/script/xmlbasici.hxx b/xmloff/source/script/xmlbasici.hxx index 50e86d8a843d..e74e8d737b59 100644 --- a/xmloff/source/script/xmlbasici.hxx +++ b/xmloff/source/script/xmlbasici.hxx @@ -36,7 +36,7 @@ public: XMLBasicImportContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::frame::XModel >& rxModel ); - virtual ~XMLBasicImportContext(); + virtual ~XMLBasicImportContext() override; virtual SvXMLImportContext* CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList >& rxAttrList ) override; @@ -59,7 +59,7 @@ public: XMLBasicImportChildContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XDocumentHandler >& rxHandler ); - virtual ~XMLBasicImportChildContext(); + virtual ~XMLBasicImportChildContext() override; virtual SvXMLImportContext* CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; diff --git a/xmloff/source/script/xmlscripti.cxx b/xmloff/source/script/xmlscripti.cxx index 8ebd29d548e7..67be384bb667 100644 --- a/xmloff/source/script/xmlscripti.cxx +++ b/xmloff/source/script/xmlscripti.cxx @@ -49,7 +49,7 @@ public: XMLScriptChildContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::frame::XModel>& rxModel, const OUString& rLanguage ); - virtual ~XMLScriptChildContext(); + virtual ~XMLScriptChildContext() override; virtual SvXMLImportContext* CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; diff --git a/xmloff/source/style/DrawAspectHdl.hxx b/xmloff/source/style/DrawAspectHdl.hxx index 8a6045321ddb..82db69d51926 100644 --- a/xmloff/source/style/DrawAspectHdl.hxx +++ b/xmloff/source/style/DrawAspectHdl.hxx @@ -28,7 +28,7 @@ class DrawAspectHdl : public XMLPropertyHandler { public: - virtual ~DrawAspectHdl(); + virtual ~DrawAspectHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/FillStyleContext.hxx b/xmloff/source/style/FillStyleContext.hxx index bc851f0bd5a3..7d0b90f5c39a 100644 --- a/xmloff/source/style/FillStyleContext.hxx +++ b/xmloff/source/style/FillStyleContext.hxx @@ -36,7 +36,7 @@ public: XMLGradientStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); - virtual ~XMLGradientStyleContext(); + virtual ~XMLGradientStyleContext() override; virtual void EndElement() override; @@ -55,7 +55,7 @@ public: XMLHatchStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); - virtual ~XMLHatchStyleContext(); + virtual ~XMLHatchStyleContext() override; virtual void EndElement() override; @@ -75,7 +75,7 @@ public: XMLBitmapStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); - virtual ~XMLBitmapStyleContext(); + virtual ~XMLBitmapStyleContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, @@ -99,7 +99,7 @@ public: XMLTransGradientStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); - virtual ~XMLTransGradientStyleContext(); + virtual ~XMLTransGradientStyleContext() override; virtual void EndElement() override; @@ -118,7 +118,7 @@ public: XMLMarkerStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); - virtual ~XMLMarkerStyleContext(); + virtual ~XMLMarkerStyleContext() override; virtual void EndElement() override; @@ -137,7 +137,7 @@ public: XMLDashStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); - virtual ~XMLDashStyleContext(); + virtual ~XMLDashStyleContext() override; virtual void EndElement() override; diff --git a/xmloff/source/style/PageHeaderFooterContext.hxx b/xmloff/source/style/PageHeaderFooterContext.hxx index bff9387cd2c3..b955fbbb1467 100644 --- a/xmloff/source/style/PageHeaderFooterContext.hxx +++ b/xmloff/source/style/PageHeaderFooterContext.hxx @@ -39,7 +39,7 @@ public: sal_Int32 nStartIndex, sal_Int32 nEndIndex, const bool bHeader); - virtual ~PageHeaderFooterContext(); + virtual ~PageHeaderFooterContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/style/PageMasterExportPropMapper.hxx b/xmloff/source/style/PageMasterExportPropMapper.hxx index 5425acc7f858..0e8a792806bb 100644 --- a/xmloff/source/style/PageMasterExportPropMapper.hxx +++ b/xmloff/source/style/PageMasterExportPropMapper.hxx @@ -43,7 +43,7 @@ public: const rtl::Reference< XMLPropertySetMapper >& rMapper, SvXMLExport& rExport ); - virtual ~XMLPageMasterExportPropMapper(); + virtual ~XMLPageMasterExportPropMapper() override; virtual void handleElementItem( SvXMLExport& rExport, diff --git a/xmloff/source/style/PageMasterImportPropMapper.hxx b/xmloff/source/style/PageMasterImportPropMapper.hxx index baf7cca2d73d..5c1d1ec97fbd 100644 --- a/xmloff/source/style/PageMasterImportPropMapper.hxx +++ b/xmloff/source/style/PageMasterImportPropMapper.hxx @@ -35,7 +35,7 @@ public: PageMasterImportPropertyMapper( const rtl::Reference< XMLPropertySetMapper >& rMapper, SvXMLImport& rImp); - virtual ~PageMasterImportPropertyMapper(); + virtual ~PageMasterImportPropertyMapper() override; /** this method is called for every item that has the MID_FLAG_SPECIAL_ITEM_IMPORT flag set */ virtual bool handleSpecialItem( diff --git a/xmloff/source/style/PageMasterPropHdl.hxx b/xmloff/source/style/PageMasterPropHdl.hxx index fa74cdbe0865..11df3a7364df 100644 --- a/xmloff/source/style/PageMasterPropHdl.hxx +++ b/xmloff/source/style/PageMasterPropHdl.hxx @@ -29,7 +29,7 @@ class XMLPMPropHdl_PageStyleLayout : public XMLPropertyHandler { public: - virtual ~XMLPMPropHdl_PageStyleLayout(); + virtual ~XMLPMPropHdl_PageStyleLayout() override; virtual bool equals( const css::uno::Any& rAny1, const css::uno::Any& rAny2 @@ -51,7 +51,7 @@ public: class XMLPMPropHdl_NumFormat : public XMLPropertyHandler { public: - virtual ~XMLPMPropHdl_NumFormat(); + virtual ~XMLPMPropHdl_NumFormat() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, @@ -69,7 +69,7 @@ public: class XMLPMPropHdl_NumLetterSync : public XMLPropertyHandler { public: - virtual ~XMLPMPropHdl_NumLetterSync(); + virtual ~XMLPMPropHdl_NumLetterSync() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, @@ -87,7 +87,7 @@ public: class XMLPMPropHdl_PaperTrayNumber : public XMLPropertyHandler { public: - virtual ~XMLPMPropHdl_PaperTrayNumber(); + virtual ~XMLPMPropHdl_PaperTrayNumber() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, @@ -109,7 +109,7 @@ protected: public: explicit XMLPMPropHdl_Print( enum ::xmloff::token::XMLTokenEnum eValue ); - virtual ~XMLPMPropHdl_Print(); + virtual ~XMLPMPropHdl_Print() override; virtual bool importXML( const OUString& rStrImpValue, @@ -128,7 +128,7 @@ public: class XMLPMPropHdl_CenterHorizontal : public XMLPropertyHandler { public: - virtual ~XMLPMPropHdl_CenterHorizontal(); + virtual ~XMLPMPropHdl_CenterHorizontal() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, @@ -144,7 +144,7 @@ public: class XMLPMPropHdl_CenterVertical : public XMLPropertyHandler { public: - virtual ~XMLPMPropHdl_CenterVertical(); + virtual ~XMLPMPropHdl_CenterVertical() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, diff --git a/xmloff/source/style/PageMasterPropHdlFactory.hxx b/xmloff/source/style/PageMasterPropHdlFactory.hxx index c466b295e428..b5852e7b9101 100644 --- a/xmloff/source/style/PageMasterPropHdlFactory.hxx +++ b/xmloff/source/style/PageMasterPropHdlFactory.hxx @@ -26,7 +26,7 @@ class XMLPageMasterPropHdlFactory : public XMLPropertyHandlerFactory { public: XMLPageMasterPropHdlFactory(); - virtual ~XMLPageMasterPropHdlFactory(); + virtual ~XMLPageMasterPropHdlFactory() override; virtual const XMLPropertyHandler* GetPropertyHandler( sal_Int32 nType ) const override; diff --git a/xmloff/source/style/PageMasterPropMapper.hxx b/xmloff/source/style/PageMasterPropMapper.hxx index 6b45fbd9ca1e..bd1c9ab25f7b 100644 --- a/xmloff/source/style/PageMasterPropMapper.hxx +++ b/xmloff/source/style/PageMasterPropMapper.hxx @@ -29,7 +29,7 @@ public: XMLPageMasterPropSetMapper( const XMLPropertyMapEntry* pEntries, const rtl::Reference< XMLPropertyHandlerFactory >& rFactory ); - virtual ~XMLPageMasterPropSetMapper(); + virtual ~XMLPageMasterPropSetMapper() override; }; #endif diff --git a/xmloff/source/style/PagePropertySetContext.hxx b/xmloff/source/style/PagePropertySetContext.hxx index be61998a79ec..3f82d6b99389 100644 --- a/xmloff/source/style/PagePropertySetContext.hxx +++ b/xmloff/source/style/PagePropertySetContext.hxx @@ -43,7 +43,7 @@ public: sal_Int32 nStartIndex, sal_Int32 nEndIndex, const PageContextType aType ); - virtual ~PagePropertySetContext(); + virtual ~PagePropertySetContext() override; using SvXMLPropertySetContext::CreateChildContext; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/source/style/XMLFontStylesContext_impl.hxx b/xmloff/source/style/XMLFontStylesContext_impl.hxx index a96cc47eba96..ef387927681c 100644 --- a/xmloff/source/style/XMLFontStylesContext_impl.hxx +++ b/xmloff/source/style/XMLFontStylesContext_impl.hxx @@ -50,7 +50,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, XMLFontStylesContext& rStyles ); - virtual ~XMLFontStyleContextFontFace(); + virtual ~XMLFontStyleContextFontFace() override; void SetAttribute( sal_uInt16 nPrefixKey, const OUString& rLocalName, const OUString& rValue ) override; diff --git a/xmloff/source/style/XMLFootnoteSeparatorImport.hxx b/xmloff/source/style/XMLFootnoteSeparatorImport.hxx index 373faef6766f..375b90826c27 100644 --- a/xmloff/source/style/XMLFootnoteSeparatorImport.hxx +++ b/xmloff/source/style/XMLFootnoteSeparatorImport.hxx @@ -54,7 +54,7 @@ public: const rtl::Reference<XMLPropertySetMapper> & rMapperRef, sal_Int32 nIndex); - virtual ~XMLFootnoteSeparatorImport(); + virtual ~XMLFootnoteSeparatorImport() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList> & xAttrList ) override; diff --git a/xmloff/source/style/adjushdl.hxx b/xmloff/source/style/adjushdl.hxx index 23318751a518..f878bd103ccb 100644 --- a/xmloff/source/style/adjushdl.hxx +++ b/xmloff/source/style/adjushdl.hxx @@ -28,7 +28,7 @@ class XMLParaAdjustPropHdl : public XMLPropertyHandler { public: - virtual ~XMLParaAdjustPropHdl(); + virtual ~XMLParaAdjustPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -40,7 +40,7 @@ public: class XMLLastLineAdjustPropHdl : public XMLPropertyHandler { public: - virtual ~XMLLastLineAdjustPropHdl(); + virtual ~XMLLastLineAdjustPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/backhdl.hxx b/xmloff/source/style/backhdl.hxx index 70adf90ecadb..a07235525b9d 100644 --- a/xmloff/source/style/backhdl.hxx +++ b/xmloff/source/style/backhdl.hxx @@ -29,7 +29,7 @@ class XMLBackGraphicPositionPropHdl : public XMLPropertyHandler { public: - virtual ~XMLBackGraphicPositionPropHdl(); + virtual ~XMLBackGraphicPositionPropHdl() override; /// TabStops will be imported/exported as XML-Elements. So the Import/Export-work must be done at another place. using XMLPropertyHandler::importXML; diff --git a/xmloff/source/style/bordrhdl.hxx b/xmloff/source/style/bordrhdl.hxx index 6d3960f78077..8ce4ae180093 100644 --- a/xmloff/source/style/bordrhdl.hxx +++ b/xmloff/source/style/bordrhdl.hxx @@ -28,7 +28,7 @@ class XMLBorderWidthHdl : public XMLPropertyHandler { public: - virtual ~XMLBorderWidthHdl(); + virtual ~XMLBorderWidthHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -37,7 +37,7 @@ public: class XMLBorderHdl : public XMLPropertyHandler { public: - virtual ~XMLBorderHdl(); + virtual ~XMLBorderHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/breakhdl.hxx b/xmloff/source/style/breakhdl.hxx index 7495d025e768..3954cbc2aba4 100644 --- a/xmloff/source/style/breakhdl.hxx +++ b/xmloff/source/style/breakhdl.hxx @@ -28,7 +28,7 @@ class XMLFmtBreakBeforePropHdl : public XMLPropertyHandler { public: - virtual ~XMLFmtBreakBeforePropHdl(); + virtual ~XMLFmtBreakBeforePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -40,7 +40,7 @@ public: class XMLFmtBreakAfterPropHdl : public XMLPropertyHandler { public: - virtual ~XMLFmtBreakAfterPropHdl(); + virtual ~XMLFmtBreakAfterPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/cdouthdl.hxx b/xmloff/source/style/cdouthdl.hxx index d62fc3152ca8..be7aba6a6638 100644 --- a/xmloff/source/style/cdouthdl.hxx +++ b/xmloff/source/style/cdouthdl.hxx @@ -28,7 +28,7 @@ class XMLCrossedOutTypePropHdl : public XMLPropertyHandler { public: - virtual ~XMLCrossedOutTypePropHdl(); + virtual ~XMLCrossedOutTypePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -37,7 +37,7 @@ public: class XMLCrossedOutStylePropHdl : public XMLPropertyHandler { public: - virtual ~XMLCrossedOutStylePropHdl(); + virtual ~XMLCrossedOutStylePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -46,7 +46,7 @@ public: class XMLCrossedOutWidthPropHdl : public XMLPropertyHandler { public: - virtual ~XMLCrossedOutWidthPropHdl(); + virtual ~XMLCrossedOutWidthPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -55,7 +55,7 @@ public: class XMLCrossedOutTextPropHdl : public XMLPropertyHandler { public: - virtual ~XMLCrossedOutTextPropHdl(); + virtual ~XMLCrossedOutTextPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/chrhghdl.hxx b/xmloff/source/style/chrhghdl.hxx index 15bd9c2e3668..3961ba43be59 100644 --- a/xmloff/source/style/chrhghdl.hxx +++ b/xmloff/source/style/chrhghdl.hxx @@ -28,7 +28,7 @@ class XMLCharHeightHdl : public XMLPropertyHandler { public: - virtual ~XMLCharHeightHdl(); + virtual ~XMLCharHeightHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -37,7 +37,7 @@ public: class XMLCharHeightPropHdl : public XMLPropertyHandler { public: - virtual ~XMLCharHeightPropHdl(); + virtual ~XMLCharHeightPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -46,7 +46,7 @@ public: class XMLCharHeightDiffHdl : public XMLPropertyHandler { public: - virtual ~XMLCharHeightDiffHdl(); + virtual ~XMLCharHeightDiffHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/chrlohdl.hxx b/xmloff/source/style/chrlohdl.hxx index b0fbdeeedc02..5b350dd281ae 100644 --- a/xmloff/source/style/chrlohdl.hxx +++ b/xmloff/source/style/chrlohdl.hxx @@ -28,7 +28,7 @@ class XMLCharLanguageHdl : public XMLPropertyHandler { public: - virtual ~XMLCharLanguageHdl(); + virtual ~XMLCharLanguageHdl() override; virtual bool equals( const css::uno::Any& r1, const css::uno::Any& r2 ) const override; @@ -39,7 +39,7 @@ public: class XMLCharScriptHdl : public XMLPropertyHandler { public: - virtual ~XMLCharScriptHdl(); + virtual ~XMLCharScriptHdl() override; virtual bool equals( const css::uno::Any& r1, const css::uno::Any& r2 ) const override; @@ -50,7 +50,7 @@ public: class XMLCharCountryHdl : public XMLPropertyHandler { public: - virtual ~XMLCharCountryHdl(); + virtual ~XMLCharCountryHdl() override; virtual bool equals( const css::uno::Any& r1, const css::uno::Any& r2 ) const override; @@ -61,7 +61,7 @@ public: class XMLCharRfcLanguageTagHdl : public XMLPropertyHandler { public: - virtual ~XMLCharRfcLanguageTagHdl(); + virtual ~XMLCharRfcLanguageTagHdl() override; virtual bool equals( const css::uno::Any& r1, const css::uno::Any& r2 ) const override; diff --git a/xmloff/source/style/csmaphdl.hxx b/xmloff/source/style/csmaphdl.hxx index aa391f66b098..f7dd51d2c0e2 100644 --- a/xmloff/source/style/csmaphdl.hxx +++ b/xmloff/source/style/csmaphdl.hxx @@ -28,7 +28,7 @@ class XMLCaseMapPropHdl : public XMLPropertyHandler { public: - virtual ~XMLCaseMapPropHdl(); + virtual ~XMLCaseMapPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -37,7 +37,7 @@ public: class XMLCaseMapVariantHdl : public XMLPropertyHandler { public: - virtual ~XMLCaseMapVariantHdl(); + virtual ~XMLCaseMapVariantHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/durationhdl.hxx b/xmloff/source/style/durationhdl.hxx index d6db5b32e5fc..27e7ce550fba 100644 --- a/xmloff/source/style/durationhdl.hxx +++ b/xmloff/source/style/durationhdl.hxx @@ -28,7 +28,7 @@ class XMLDurationMS16PropHdl_Impl : public XMLPropertyHandler { public: - virtual ~XMLDurationMS16PropHdl_Impl(); + virtual ~XMLDurationMS16PropHdl_Impl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/escphdl.hxx b/xmloff/source/style/escphdl.hxx index d775b3c7e54b..5ce3b94b3d39 100644 --- a/xmloff/source/style/escphdl.hxx +++ b/xmloff/source/style/escphdl.hxx @@ -28,7 +28,7 @@ class XMLEscapementPropHdl : public XMLPropertyHandler { public: - virtual ~XMLEscapementPropHdl(); + virtual ~XMLEscapementPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -37,7 +37,7 @@ public: class XMLEscapementHeightPropHdl : public XMLPropertyHandler { public: - virtual ~XMLEscapementHeightPropHdl(); + virtual ~XMLEscapementHeightPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/fonthdl.hxx b/xmloff/source/style/fonthdl.hxx index 3a20827fc9e7..2860a1eaaacd 100644 --- a/xmloff/source/style/fonthdl.hxx +++ b/xmloff/source/style/fonthdl.hxx @@ -28,7 +28,7 @@ class XMLFontFamilyNamePropHdl : public XMLPropertyHandler { public: - virtual ~XMLFontFamilyNamePropHdl(); + virtual ~XMLFontFamilyNamePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -40,7 +40,7 @@ public: class XMLFontFamilyPropHdl : public XMLPropertyHandler { public: - virtual ~XMLFontFamilyPropHdl(); + virtual ~XMLFontFamilyPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -52,7 +52,7 @@ public: class XMLFontEncodingPropHdl : public XMLPropertyHandler { public: - virtual ~XMLFontEncodingPropHdl(); + virtual ~XMLFontEncodingPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -64,7 +64,7 @@ public: class XMLFontPitchPropHdl : public XMLPropertyHandler { public: - virtual ~XMLFontPitchPropHdl(); + virtual ~XMLFontPitchPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/kernihdl.hxx b/xmloff/source/style/kernihdl.hxx index 0443e2b0b7e9..0b1e0d18050c 100644 --- a/xmloff/source/style/kernihdl.hxx +++ b/xmloff/source/style/kernihdl.hxx @@ -28,7 +28,7 @@ class XMLKerningPropHdl : public XMLPropertyHandler { public: - virtual ~XMLKerningPropHdl(); + virtual ~XMLKerningPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/lspachdl.hxx b/xmloff/source/style/lspachdl.hxx index b0c676444b22..f501168c833d 100644 --- a/xmloff/source/style/lspachdl.hxx +++ b/xmloff/source/style/lspachdl.hxx @@ -28,7 +28,7 @@ class XMLLineHeightHdl : public XMLPropertyHandler { public: - virtual ~XMLLineHeightHdl(); + virtual ~XMLLineHeightHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -37,7 +37,7 @@ public: class XMLLineHeightAtLeastHdl : public XMLPropertyHandler { public: - virtual ~XMLLineHeightAtLeastHdl(); + virtual ~XMLLineHeightAtLeastHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -46,7 +46,7 @@ public: class XMLLineSpacingHdl : public XMLPropertyHandler { public: - virtual ~XMLLineSpacingHdl(); + virtual ~XMLLineSpacingHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/opaquhdl.hxx b/xmloff/source/style/opaquhdl.hxx index 1877ebc33a23..e2a3501886f5 100644 --- a/xmloff/source/style/opaquhdl.hxx +++ b/xmloff/source/style/opaquhdl.hxx @@ -28,7 +28,7 @@ class XMLOpaquePropHdl : public XMLPropertyHandler { public: - virtual ~XMLOpaquePropHdl(); + virtual ~XMLOpaquePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/postuhdl.hxx b/xmloff/source/style/postuhdl.hxx index 3c01dcded581..17d35e9bec55 100644 --- a/xmloff/source/style/postuhdl.hxx +++ b/xmloff/source/style/postuhdl.hxx @@ -28,7 +28,7 @@ class XMLPosturePropHdl : public XMLPropertyHandler { public: - virtual ~XMLPosturePropHdl(); + virtual ~XMLPosturePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/shadwhdl.hxx b/xmloff/source/style/shadwhdl.hxx index b43245373e15..0e1b3f1e5676 100644 --- a/xmloff/source/style/shadwhdl.hxx +++ b/xmloff/source/style/shadwhdl.hxx @@ -28,7 +28,7 @@ class XMLShadowPropHdl : public XMLPropertyHandler { public: - virtual ~XMLShadowPropHdl(); + virtual ~XMLShadowPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/shdwdhdl.hxx b/xmloff/source/style/shdwdhdl.hxx index 4287e5a0c730..97cb988149bf 100644 --- a/xmloff/source/style/shdwdhdl.hxx +++ b/xmloff/source/style/shdwdhdl.hxx @@ -28,7 +28,7 @@ class XMLShadowedPropHdl : public XMLPropertyHandler { public: - virtual ~XMLShadowedPropHdl(); + virtual ~XMLShadowedPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/tabsthdl.hxx b/xmloff/source/style/tabsthdl.hxx index 33e833d8e441..05e417294b83 100644 --- a/xmloff/source/style/tabsthdl.hxx +++ b/xmloff/source/style/tabsthdl.hxx @@ -28,7 +28,7 @@ class XMLTabStopPropHdl : public XMLPropertyHandler { public: - virtual ~XMLTabStopPropHdl(); + virtual ~XMLTabStopPropHdl() override; virtual bool equals( const css::uno::Any& r1, const css::uno::Any& r2 ) const override; diff --git a/xmloff/source/style/undlihdl.hxx b/xmloff/source/style/undlihdl.hxx index 3cfacd59a7d3..d3a93c5fcb89 100644 --- a/xmloff/source/style/undlihdl.hxx +++ b/xmloff/source/style/undlihdl.hxx @@ -28,7 +28,7 @@ class XMLUnderlineTypePropHdl : public XMLPropertyHandler { public: - virtual ~XMLUnderlineTypePropHdl(); + virtual ~XMLUnderlineTypePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -37,7 +37,7 @@ public: class XMLUnderlineStylePropHdl : public XMLPropertyHandler { public: - virtual ~XMLUnderlineStylePropHdl(); + virtual ~XMLUnderlineStylePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -46,7 +46,7 @@ public: class XMLUnderlineWidthPropHdl : public XMLPropertyHandler { public: - virtual ~XMLUnderlineWidthPropHdl(); + virtual ~XMLUnderlineWidthPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/weighhdl.hxx b/xmloff/source/style/weighhdl.hxx index 4b0e4ae4a4eb..ea45061c94ea 100644 --- a/xmloff/source/style/weighhdl.hxx +++ b/xmloff/source/style/weighhdl.hxx @@ -28,7 +28,7 @@ class XMLFontWeightPropHdl : public XMLPropertyHandler { public: - virtual ~XMLFontWeightPropHdl(); + virtual ~XMLFontWeightPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/xmlbahdl.hxx b/xmloff/source/style/xmlbahdl.hxx index a84f4d872a17..3bb213b7fe37 100644 --- a/xmloff/source/style/xmlbahdl.hxx +++ b/xmloff/source/style/xmlbahdl.hxx @@ -34,7 +34,7 @@ class XMLNumberPropHdl : public XMLPropertyHandler public: explicit XMLNumberPropHdl( sal_Int8 nB=4 ) : nBytes( nB ) {} - virtual ~XMLNumberPropHdl(); + virtual ~XMLNumberPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -50,7 +50,7 @@ class XMLNumberNonePropHdl : public XMLPropertyHandler public: explicit XMLNumberNonePropHdl( sal_Int8 nB = 4 ); XMLNumberNonePropHdl( enum ::xmloff::token::XMLTokenEnum eZeroString, sal_Int8 nB = 4 ); - virtual ~XMLNumberNonePropHdl(); + virtual ~XMLNumberNonePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -64,7 +64,7 @@ class XMLMeasurePropHdl : public XMLPropertyHandler sal_Int8 nBytes; public: explicit XMLMeasurePropHdl( sal_Int8 nB=4 ) : nBytes( nB ) {} - virtual ~XMLMeasurePropHdl(); + virtual ~XMLMeasurePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -78,7 +78,7 @@ class XMLPercentPropHdl : public XMLPropertyHandler sal_Int8 nBytes; public: explicit XMLPercentPropHdl( sal_Int8 nB=4 ) : nBytes( nB ) {} - virtual ~XMLPercentPropHdl(); + virtual ~XMLPercentPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -102,7 +102,7 @@ class XMLNegPercentPropHdl : public XMLPropertyHandler sal_Int8 nBytes; public: explicit XMLNegPercentPropHdl( sal_Int8 nB=4 ) : nBytes( nB ) {} - virtual ~XMLNegPercentPropHdl(); + virtual ~XMLNegPercentPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -116,7 +116,7 @@ class XMLMeasurePxPropHdl : public XMLPropertyHandler sal_Int8 nBytes; public: explicit XMLMeasurePxPropHdl( sal_Int8 nB=4 ) : nBytes( nB ) {} - virtual ~XMLMeasurePxPropHdl(); + virtual ~XMLMeasurePxPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -128,7 +128,7 @@ public: class XMLBoolPropHdl : public XMLPropertyHandler { public: - virtual ~XMLBoolPropHdl(); + virtual ~XMLBoolPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -137,7 +137,7 @@ public: class XMLBoolFalsePropHdl : public XMLBoolPropHdl { public: - virtual ~XMLBoolFalsePropHdl(); + virtual ~XMLBoolFalsePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -150,7 +150,7 @@ public: class XMLColorPropHdl : public XMLPropertyHandler { public: - virtual ~XMLColorPropHdl(); + virtual ~XMLColorPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -162,7 +162,7 @@ public: class XMLHexPropHdl : public XMLPropertyHandler { public: - virtual ~XMLHexPropHdl(); + virtual ~XMLHexPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -174,7 +174,7 @@ public: class XMLStringPropHdl : public XMLPropertyHandler { public: - virtual ~XMLStringPropHdl(); + virtual ~XMLStringPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -186,7 +186,7 @@ public: class XMLStyleNamePropHdl : public XMLStringPropHdl { public: - virtual ~XMLStyleNamePropHdl(); + virtual ~XMLStyleNamePropHdl() override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; }; @@ -198,7 +198,7 @@ public: class XMLDoublePropHdl : public XMLPropertyHandler { public: - virtual ~XMLDoublePropHdl(); + virtual ~XMLDoublePropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -210,7 +210,7 @@ public: class XMLNBoolPropHdl : public XMLPropertyHandler { public: - virtual ~XMLNBoolPropHdl(); + virtual ~XMLNBoolPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -225,7 +225,7 @@ class XMLColorTransparentPropHdl : public XMLPropertyHandler public: explicit XMLColorTransparentPropHdl( enum ::xmloff::token::XMLTokenEnum eTransparent = xmloff::token::XML_TOKEN_INVALID ); - virtual ~XMLColorTransparentPropHdl(); + virtual ~XMLColorTransparentPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -242,7 +242,7 @@ class XMLIsTransparentPropHdl : public XMLPropertyHandler public: XMLIsTransparentPropHdl( enum ::xmloff::token::XMLTokenEnum eTransparent = xmloff::token::XML_TOKEN_INVALID, bool bTransPropValue = true ); - virtual ~XMLIsTransparentPropHdl(); + virtual ~XMLIsTransparentPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -255,7 +255,7 @@ class XMLColorAutoPropHdl : public XMLPropertyHandler { public: XMLColorAutoPropHdl(); - virtual ~XMLColorAutoPropHdl(); + virtual ~XMLColorAutoPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -268,7 +268,7 @@ class XMLIsAutoColorPropHdl : public XMLPropertyHandler { public: XMLIsAutoColorPropHdl(); - virtual ~XMLIsAutoColorPropHdl(); + virtual ~XMLIsAutoColorPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -282,7 +282,7 @@ public: class XMLCompareOnlyPropHdl : public XMLPropertyHandler { public: - virtual ~XMLCompareOnlyPropHdl(); + virtual ~XMLCompareOnlyPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -298,7 +298,7 @@ class XMLNumberWithoutZeroPropHdl : public XMLPropertyHandler sal_Int8 nBytes; public: explicit XMLNumberWithoutZeroPropHdl( sal_Int8 nB = 4 ); - virtual ~XMLNumberWithoutZeroPropHdl(); + virtual ~XMLNumberWithoutZeroPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; @@ -312,7 +312,7 @@ public: class XMLNumberWithAutoInsteadZeroPropHdl : public XMLNumberWithoutZeroPropHdl { public: - virtual ~XMLNumberWithAutoInsteadZeroPropHdl(); + virtual ~XMLNumberWithAutoInsteadZeroPropHdl() override; virtual bool importXML( const OUString& rStrImpValue, css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; virtual bool exportXML( OUString& rStrExpValue, const css::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const override; diff --git a/xmloff/source/style/xmlnumfi.cxx b/xmloff/source/style/xmlnumfi.cxx index ec363c3cb008..1fd5afd37be9 100644 --- a/xmloff/source/style/xmlnumfi.cxx +++ b/xmloff/source/style/xmlnumfi.cxx @@ -139,7 +139,7 @@ public: const OUString& rLName, SvXMLNumFormatContext& rParentContext, sal_uInt16 nNewType, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ); - virtual ~SvXMLNumFmtElementContext(); + virtual ~SvXMLNumFmtElementContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -161,7 +161,7 @@ public: const OUString& rLName, SvXMLNumFmtElementContext& rParentContext, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ); - virtual ~SvXMLNumFmtEmbeddedTextContext(); + virtual ~SvXMLNumFmtEmbeddedTextContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -181,7 +181,7 @@ public: const OUString& rLName, SvXMLNumFormatContext& rParentContext, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ); - virtual ~SvXMLNumFmtMapContext(); + virtual ~SvXMLNumFmtMapContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -201,7 +201,7 @@ public: const OUString& rLName, SvXMLNumFormatContext& rParentContext, const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList ); - virtual ~SvXMLNumFmtPropContext(); + virtual ~SvXMLNumFmtPropContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/style/xmlnumi.cxx b/xmloff/source/style/xmlnumi.cxx index ce964bada943..f35637276c1c 100644 --- a/xmloff/source/style/xmlnumi.cxx +++ b/xmloff/source/style/xmlnumi.cxx @@ -79,7 +79,7 @@ public: const OUString& rLName, const Reference< xml::sax::XAttributeList >& xAttrList, SvxXMLListLevelStyleContext_Impl& rLLevel ); - virtual ~SvxXMLListLevelStyleAttrContext_Impl(); + virtual ~SvxXMLListLevelStyleAttrContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -97,7 +97,7 @@ public: const OUString& rLName, const Reference< xml::sax::XAttributeList >& xAttrList, SvxXMLListLevelStyleContext_Impl& rLLevel ); - virtual ~SvxXMLListLevelStyleLabelAlignmentAttrContext_Impl(); + virtual ~SvxXMLListLevelStyleLabelAlignmentAttrContext_Impl() override; }; enum SvxXMLTextListLevelStyleAttrTokens @@ -218,7 +218,7 @@ public: SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const Reference< xml::sax::XAttributeList > & xAttrList ); - virtual ~SvxXMLListLevelStyleContext_Impl(); + virtual ~SvxXMLListLevelStyleContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/style/xmltabi.cxx b/xmloff/source/style/xmltabi.cxx index 5aa1091e8b31..b42eb4eb7e5a 100644 --- a/xmloff/source/style/xmltabi.cxx +++ b/xmloff/source/style/xmltabi.cxx @@ -66,7 +66,7 @@ public: const OUString& rLName, const uno::Reference< xml::sax::XAttributeList > & xAttrList ); - virtual ~SvxXMLTabStopContext_Impl(); + virtual ~SvxXMLTabStopContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/table/XMLTableImport.cxx b/xmloff/source/table/XMLTableImport.cxx index 2879196a4771..e32710a6dd2a 100644 --- a/xmloff/source/table/XMLTableImport.cxx +++ b/xmloff/source/table/XMLTableImport.cxx @@ -94,7 +94,7 @@ class XMLTableImportContext : public SvXMLImportContext { public: XMLTableImportContext( const rtl::Reference< XMLTableImport >& xThis, sal_uInt16 nPrfx, const OUString& rLName, Reference< XColumnRowRange >& xColumnRowRange ); - virtual ~XMLTableImportContext(); + virtual ~XMLTableImportContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList ) override; @@ -133,7 +133,7 @@ public: sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); - virtual ~XMLCellImportContext(); + virtual ~XMLCellImportContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const Reference< XAttributeList >& xAttrList ) override; diff --git a/xmloff/source/text/XMLAnchorTypePropHdl.hxx b/xmloff/source/text/XMLAnchorTypePropHdl.hxx index f08cf2563c56..7f6c8ddfe27c 100644 --- a/xmloff/source/text/XMLAnchorTypePropHdl.hxx +++ b/xmloff/source/text/XMLAnchorTypePropHdl.hxx @@ -27,7 +27,7 @@ class XMLAnchorTypePropHdl : public XMLPropertyHandler { public: - virtual ~XMLAnchorTypePropHdl (); + virtual ~XMLAnchorTypePropHdl () override; virtual bool importXML( const OUString& rStrImpValue, diff --git a/xmloff/source/text/XMLAutoMarkFileContext.hxx b/xmloff/source/text/XMLAutoMarkFileContext.hxx index 2ed06823fcad..63f0cbff00b8 100644 --- a/xmloff/source/text/XMLAutoMarkFileContext.hxx +++ b/xmloff/source/text/XMLAutoMarkFileContext.hxx @@ -42,7 +42,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName); - virtual ~XMLAutoMarkFileContext(); + virtual ~XMLAutoMarkFileContext() override; protected: diff --git a/xmloff/source/text/XMLAutoTextContainerEventImport.hxx b/xmloff/source/text/XMLAutoTextContainerEventImport.hxx index 1f30f00e513d..18374a85483f 100644 --- a/xmloff/source/text/XMLAutoTextContainerEventImport.hxx +++ b/xmloff/source/text/XMLAutoTextContainerEventImport.hxx @@ -48,7 +48,7 @@ public: const OUString& rLName, const css::uno::Reference<css::container::XNameReplace > & rEvents ); - virtual ~XMLAutoTextContainerEventImport(); + virtual ~XMLAutoTextContainerEventImport() override; protected: diff --git a/xmloff/source/text/XMLAutoTextEventExport.hxx b/xmloff/source/text/XMLAutoTextEventExport.hxx index 53f2c2fdc712..7885d60e4d7e 100644 --- a/xmloff/source/text/XMLAutoTextEventExport.hxx +++ b/xmloff/source/text/XMLAutoTextEventExport.hxx @@ -54,7 +54,7 @@ public: const css::uno::Reference< css::uno::XComponentContext >& xContext, OUString const & implementationName, SvXMLExportFlags nFlags ); - virtual ~XMLAutoTextEventExport(); + virtual ~XMLAutoTextEventExport() override; // XInitialization virtual void SAL_CALL initialize( diff --git a/xmloff/source/text/XMLAutoTextEventImport.hxx b/xmloff/source/text/XMLAutoTextEventImport.hxx index e94bbdf3c14b..a61e8b64de2d 100644 --- a/xmloff/source/text/XMLAutoTextEventImport.hxx +++ b/xmloff/source/text/XMLAutoTextEventImport.hxx @@ -47,7 +47,7 @@ public: const css::uno::Reference< css::uno::XComponentContext >& xContext ) throw(); - virtual ~XMLAutoTextEventImport() throw(); + virtual ~XMLAutoTextEventImport() throw() override; // XInitialization virtual void SAL_CALL initialize( diff --git a/xmloff/source/text/XMLCalculationSettingsContext.hxx b/xmloff/source/text/XMLCalculationSettingsContext.hxx index 425f5270b006..1dc6b57c9b64 100644 --- a/xmloff/source/text/XMLCalculationSettingsContext.hxx +++ b/xmloff/source/text/XMLCalculationSettingsContext.hxx @@ -31,7 +31,7 @@ public: const OUString& rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ); - virtual ~XMLCalculationSettingsContext(); + virtual ~XMLCalculationSettingsContext() override; virtual void EndElement() override; }; diff --git a/xmloff/source/text/XMLChangeImportContext.hxx b/xmloff/source/text/XMLChangeImportContext.hxx index 9bd88cb7ed0b..c3570ec82d3d 100644 --- a/xmloff/source/text/XMLChangeImportContext.hxx +++ b/xmloff/source/text/XMLChangeImportContext.hxx @@ -62,7 +62,7 @@ public: /// (usually before a section or table) bool bIsOutsideOfParagraph = false); - virtual ~XMLChangeImportContext(); + virtual ~XMLChangeImportContext() override; virtual void StartElement( const css::uno::Reference<css::xml::sax::XAttributeList> & xAttrList) override; diff --git a/xmloff/source/text/XMLChangeInfoContext.hxx b/xmloff/source/text/XMLChangeInfoContext.hxx index 0599a4ce2a5b..ef8864e99c03 100644 --- a/xmloff/source/text/XMLChangeInfoContext.hxx +++ b/xmloff/source/text/XMLChangeInfoContext.hxx @@ -58,7 +58,7 @@ public: XMLChangedRegionImportContext& rChangedRegion, const OUString& rChangeType); - virtual ~XMLChangeInfoContext(); + virtual ~XMLChangeInfoContext() override; virtual void StartElement( const css::uno::Reference<css::xml::sax::XAttributeList> & xAttrList) override; diff --git a/xmloff/source/text/XMLChangedRegionImportContext.hxx b/xmloff/source/text/XMLChangedRegionImportContext.hxx index d858118f5256..c82b6670e7c8 100644 --- a/xmloff/source/text/XMLChangedRegionImportContext.hxx +++ b/xmloff/source/text/XMLChangedRegionImportContext.hxx @@ -58,7 +58,7 @@ public: sal_uInt16 nPrefix, const OUString& rLocalName); - virtual ~XMLChangedRegionImportContext(); + virtual ~XMLChangedRegionImportContext() override; virtual void StartElement( const css::uno::Reference<css::xml::sax::XAttributeList> & xAttrList) override; diff --git a/xmloff/source/text/XMLIndexAlphabeticalSourceContext.hxx b/xmloff/source/text/XMLIndexAlphabeticalSourceContext.hxx index 730c6f99ad3e..ea1fe7264e2c 100644 --- a/xmloff/source/text/XMLIndexAlphabeticalSourceContext.hxx +++ b/xmloff/source/text/XMLIndexAlphabeticalSourceContext.hxx @@ -73,7 +73,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::beans::XPropertySet> & rPropSet); - virtual ~XMLIndexAlphabeticalSourceContext(); + virtual ~XMLIndexAlphabeticalSourceContext() override; protected: diff --git a/xmloff/source/text/XMLIndexBibliographyEntryContext.hxx b/xmloff/source/text/XMLIndexBibliographyEntryContext.hxx index f30b7135cfb6..21a07168ace4 100644 --- a/xmloff/source/text/XMLIndexBibliographyEntryContext.hxx +++ b/xmloff/source/text/XMLIndexBibliographyEntryContext.hxx @@ -52,7 +52,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName ); - virtual ~XMLIndexBibliographyEntryContext(); + virtual ~XMLIndexBibliographyEntryContext() override; protected: diff --git a/xmloff/source/text/XMLIndexBibliographySourceContext.hxx b/xmloff/source/text/XMLIndexBibliographySourceContext.hxx index 4cf6ee1e047c..748bab2e6142 100644 --- a/xmloff/source/text/XMLIndexBibliographySourceContext.hxx +++ b/xmloff/source/text/XMLIndexBibliographySourceContext.hxx @@ -45,7 +45,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::beans::XPropertySet> & rPropSet); - virtual ~XMLIndexBibliographySourceContext(); + virtual ~XMLIndexBibliographySourceContext() override; protected: diff --git a/xmloff/source/text/XMLIndexBodyContext.hxx b/xmloff/source/text/XMLIndexBodyContext.hxx index 81771086311a..6b4212a50713 100644 --- a/xmloff/source/text/XMLIndexBodyContext.hxx +++ b/xmloff/source/text/XMLIndexBodyContext.hxx @@ -47,7 +47,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName ); - virtual ~XMLIndexBodyContext(); + virtual ~XMLIndexBodyContext() override; /// return whether any content elements were encountered inline bool HasContent(); diff --git a/xmloff/source/text/XMLIndexChapterInfoEntryContext.hxx b/xmloff/source/text/XMLIndexChapterInfoEntryContext.hxx index efa29ed3a5c0..3d05aa2dc568 100644 --- a/xmloff/source/text/XMLIndexChapterInfoEntryContext.hxx +++ b/xmloff/source/text/XMLIndexChapterInfoEntryContext.hxx @@ -53,7 +53,7 @@ public: const OUString& rLocalName, bool bTOC ); - virtual ~XMLIndexChapterInfoEntryContext(); + virtual ~XMLIndexChapterInfoEntryContext() override; protected: diff --git a/xmloff/source/text/XMLIndexIllustrationSourceContext.hxx b/xmloff/source/text/XMLIndexIllustrationSourceContext.hxx index d43bc2c4648c..b924efedad09 100644 --- a/xmloff/source/text/XMLIndexIllustrationSourceContext.hxx +++ b/xmloff/source/text/XMLIndexIllustrationSourceContext.hxx @@ -47,7 +47,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::beans::XPropertySet> & rPropSet); - virtual ~XMLIndexIllustrationSourceContext(); + virtual ~XMLIndexIllustrationSourceContext() override; protected: diff --git a/xmloff/source/text/XMLIndexObjectSourceContext.hxx b/xmloff/source/text/XMLIndexObjectSourceContext.hxx index da3333c76858..62a69a6c5f4d 100644 --- a/xmloff/source/text/XMLIndexObjectSourceContext.hxx +++ b/xmloff/source/text/XMLIndexObjectSourceContext.hxx @@ -56,7 +56,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::beans::XPropertySet> & rPropSet); - virtual ~XMLIndexObjectSourceContext(); + virtual ~XMLIndexObjectSourceContext() override; protected: diff --git a/xmloff/source/text/XMLIndexSimpleEntryContext.hxx b/xmloff/source/text/XMLIndexSimpleEntryContext.hxx index 820f493e9632..ee3747887c10 100644 --- a/xmloff/source/text/XMLIndexSimpleEntryContext.hxx +++ b/xmloff/source/text/XMLIndexSimpleEntryContext.hxx @@ -61,7 +61,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName ); - virtual ~XMLIndexSimpleEntryContext(); + virtual ~XMLIndexSimpleEntryContext() override; protected: diff --git a/xmloff/source/text/XMLIndexSourceBaseContext.hxx b/xmloff/source/text/XMLIndexSourceBaseContext.hxx index 455ef7b67f5c..9500fbf4d10c 100644 --- a/xmloff/source/text/XMLIndexSourceBaseContext.hxx +++ b/xmloff/source/text/XMLIndexSourceBaseContext.hxx @@ -98,7 +98,7 @@ public: css::uno::Reference<css::beans::XPropertySet> & rPropSet, bool bLevelFormats); - virtual ~XMLIndexSourceBaseContext(); + virtual ~XMLIndexSourceBaseContext() override; protected: diff --git a/xmloff/source/text/XMLIndexSpanEntryContext.hxx b/xmloff/source/text/XMLIndexSpanEntryContext.hxx index ee8839b12a41..bed33dde1f89 100644 --- a/xmloff/source/text/XMLIndexSpanEntryContext.hxx +++ b/xmloff/source/text/XMLIndexSpanEntryContext.hxx @@ -45,7 +45,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName ); - virtual ~XMLIndexSpanEntryContext(); + virtual ~XMLIndexSpanEntryContext() override; protected: diff --git a/xmloff/source/text/XMLIndexTOCContext.hxx b/xmloff/source/text/XMLIndexTOCContext.hxx index 78a5f0f56258..46399c5981b7 100644 --- a/xmloff/source/text/XMLIndexTOCContext.hxx +++ b/xmloff/source/text/XMLIndexTOCContext.hxx @@ -74,7 +74,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName ); - virtual ~XMLIndexTOCContext(); + virtual ~XMLIndexTOCContext() override; protected: diff --git a/xmloff/source/text/XMLIndexTOCSourceContext.hxx b/xmloff/source/text/XMLIndexTOCSourceContext.hxx index 10aa610b5f18..d259ee21bc54 100644 --- a/xmloff/source/text/XMLIndexTOCSourceContext.hxx +++ b/xmloff/source/text/XMLIndexTOCSourceContext.hxx @@ -54,7 +54,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::beans::XPropertySet> & rPropSet); - virtual ~XMLIndexTOCSourceContext(); + virtual ~XMLIndexTOCSourceContext() override; protected: diff --git a/xmloff/source/text/XMLIndexTOCStylesContext.hxx b/xmloff/source/text/XMLIndexTOCStylesContext.hxx index 8131d03a0f4b..3a831860e0d6 100644 --- a/xmloff/source/text/XMLIndexTOCStylesContext.hxx +++ b/xmloff/source/text/XMLIndexTOCStylesContext.hxx @@ -62,7 +62,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName ); - virtual ~XMLIndexTOCStylesContext(); + virtual ~XMLIndexTOCStylesContext() override; protected: diff --git a/xmloff/source/text/XMLIndexTabStopEntryContext.hxx b/xmloff/source/text/XMLIndexTabStopEntryContext.hxx index fe0f0b41b09c..8d91c37bd238 100644 --- a/xmloff/source/text/XMLIndexTabStopEntryContext.hxx +++ b/xmloff/source/text/XMLIndexTabStopEntryContext.hxx @@ -53,7 +53,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName ); - virtual ~XMLIndexTabStopEntryContext(); + virtual ~XMLIndexTabStopEntryContext() override; protected: diff --git a/xmloff/source/text/XMLIndexTableSourceContext.hxx b/xmloff/source/text/XMLIndexTableSourceContext.hxx index a4f407dbbfc0..511dd303c72f 100644 --- a/xmloff/source/text/XMLIndexTableSourceContext.hxx +++ b/xmloff/source/text/XMLIndexTableSourceContext.hxx @@ -55,7 +55,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::beans::XPropertySet> & rPropSet); - virtual ~XMLIndexTableSourceContext(); + virtual ~XMLIndexTableSourceContext() override; protected: diff --git a/xmloff/source/text/XMLIndexTemplateContext.hxx b/xmloff/source/text/XMLIndexTemplateContext.hxx index 24dbd85a0a3a..a56daa855eea 100644 --- a/xmloff/source/text/XMLIndexTemplateContext.hxx +++ b/xmloff/source/text/XMLIndexTemplateContext.hxx @@ -120,7 +120,7 @@ public: const bool* aAllowedTokenTypes, bool bTOC=false); - virtual ~XMLIndexTemplateContext(); + virtual ~XMLIndexTemplateContext() override; /** add template; to be called by child template entry contexts */ void addTemplateEntry( diff --git a/xmloff/source/text/XMLIndexTitleTemplateContext.hxx b/xmloff/source/text/XMLIndexTitleTemplateContext.hxx index 266d671bc660..9299c08839f0 100644 --- a/xmloff/source/text/XMLIndexTitleTemplateContext.hxx +++ b/xmloff/source/text/XMLIndexTitleTemplateContext.hxx @@ -60,7 +60,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName); - virtual ~XMLIndexTitleTemplateContext(); + virtual ~XMLIndexTitleTemplateContext() override; protected: diff --git a/xmloff/source/text/XMLIndexUserSourceContext.hxx b/xmloff/source/text/XMLIndexUserSourceContext.hxx index 00d5b8bc2fb1..21bd226504cd 100644 --- a/xmloff/source/text/XMLIndexUserSourceContext.hxx +++ b/xmloff/source/text/XMLIndexUserSourceContext.hxx @@ -62,7 +62,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::beans::XPropertySet> & rPropSet); - virtual ~XMLIndexUserSourceContext(); + virtual ~XMLIndexUserSourceContext() override; protected: diff --git a/xmloff/source/text/XMLLineNumberingSeparatorImportContext.hxx b/xmloff/source/text/XMLLineNumberingSeparatorImportContext.hxx index a668ec68214c..2cc3a54c2fbc 100644 --- a/xmloff/source/text/XMLLineNumberingSeparatorImportContext.hxx +++ b/xmloff/source/text/XMLLineNumberingSeparatorImportContext.hxx @@ -47,7 +47,7 @@ public: const OUString& rLocalName, XMLLineNumberingImportContext& rLineNumbering); - virtual ~XMLLineNumberingSeparatorImportContext(); + virtual ~XMLLineNumberingSeparatorImportContext() override; protected: diff --git a/xmloff/source/text/XMLSectionFootnoteConfigImport.hxx b/xmloff/source/text/XMLSectionFootnoteConfigImport.hxx index 342844b4fd7a..4ee4f2e68c2a 100644 --- a/xmloff/source/text/XMLSectionFootnoteConfigImport.hxx +++ b/xmloff/source/text/XMLSectionFootnoteConfigImport.hxx @@ -53,7 +53,7 @@ public: ::std::vector<XMLPropertyState> & rProperties, const rtl::Reference<XMLPropertySetMapper> & rMapperRef); - virtual ~XMLSectionFootnoteConfigImport(); + virtual ~XMLSectionFootnoteConfigImport() override; virtual void StartElement( const css::uno::Reference<css::xml::sax::XAttributeList> & xAttrList ) override; diff --git a/xmloff/source/text/XMLSectionImportContext.hxx b/xmloff/source/text/XMLSectionImportContext.hxx index 952eeb533889..e67ad5babdff 100644 --- a/xmloff/source/text/XMLSectionImportContext.hxx +++ b/xmloff/source/text/XMLSectionImportContext.hxx @@ -73,7 +73,7 @@ public: sal_uInt16 nPrfx, const OUString& rLocalName ); - virtual ~XMLSectionImportContext(); + virtual ~XMLSectionImportContext() override; protected: diff --git a/xmloff/source/text/XMLSectionSourceDDEImportContext.hxx b/xmloff/source/text/XMLSectionSourceDDEImportContext.hxx index be7ee1887cc0..deda6962809c 100644 --- a/xmloff/source/text/XMLSectionSourceDDEImportContext.hxx +++ b/xmloff/source/text/XMLSectionSourceDDEImportContext.hxx @@ -46,7 +46,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::beans::XPropertySet> & rSectPropSet); - virtual ~XMLSectionSourceDDEImportContext(); + virtual ~XMLSectionSourceDDEImportContext() override; protected: diff --git a/xmloff/source/text/XMLSectionSourceImportContext.hxx b/xmloff/source/text/XMLSectionSourceImportContext.hxx index 859dfce412bb..7c577899dffe 100644 --- a/xmloff/source/text/XMLSectionSourceImportContext.hxx +++ b/xmloff/source/text/XMLSectionSourceImportContext.hxx @@ -41,7 +41,7 @@ public: const OUString& rLocalName, css::uno::Reference<css::beans::XPropertySet> & rSectPropSet); - virtual ~XMLSectionSourceImportContext(); + virtual ~XMLSectionSourceImportContext() override; protected: diff --git a/xmloff/source/text/XMLTextColumnsContext.cxx b/xmloff/source/text/XMLTextColumnsContext.cxx index ee529eddd301..eab45631c56b 100644 --- a/xmloff/source/text/XMLTextColumnsContext.cxx +++ b/xmloff/source/text/XMLTextColumnsContext.cxx @@ -105,7 +105,7 @@ public: xml::sax::XAttributeList > & xAttrList, const SvXMLTokenMap& rTokenMap ); - virtual ~XMLTextColumnContext_Impl(); + virtual ~XMLTextColumnContext_Impl() override; text::TextColumn& getTextColumn() { return aColumn; } }; @@ -185,7 +185,7 @@ public: xml::sax::XAttributeList > & xAttrList, const SvXMLTokenMap& rTokenMap ); - virtual ~XMLTextColumnSepContext_Impl(); + virtual ~XMLTextColumnSepContext_Impl() override; sal_Int32 GetWidth() const { return nWidth; } sal_Int32 GetColor() const { return nColor; } diff --git a/xmloff/source/text/XMLTextFrameContext.cxx b/xmloff/source/text/XMLTextFrameContext.cxx index d49df3c237a9..6c4f791fd296 100644 --- a/xmloff/source/text/XMLTextFrameContext.cxx +++ b/xmloff/source/text/XMLTextFrameContext.cxx @@ -122,7 +122,7 @@ public: sal_uInt16 nPrfx, const OUString& rLName, OUString& rTitleOrDesc ); - virtual ~XMLTextFrameTitleOrDescContext_Impl(); + virtual ~XMLTextFrameTitleOrDescContext_Impl() override; virtual void Characters( const OUString& rText ) override; }; @@ -157,7 +157,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, sal_uInt16 nType, ParamMap &rParamMap); - virtual ~XMLTextFrameParam_Impl(); + virtual ~XMLTextFrameParam_Impl() override; }; @@ -211,7 +211,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, const Reference < XPropertySet >& rPropSet, bool bPath ); - virtual ~XMLTextFrameContourContext_Impl(); + virtual ~XMLTextFrameContourContext_Impl() override; }; @@ -426,7 +426,7 @@ public: css::text::TextContentAnchorType eAnchorType, sal_uInt16 nType, const css::uno::Reference<css::xml::sax::XAttributeList > & rFrameAttrList ); - virtual ~XMLTextFrameContext_Impl(); + virtual ~XMLTextFrameContext_Impl() override; virtual void EndElement() override; diff --git a/xmloff/source/text/XMLTextFrameHyperlinkContext.hxx b/xmloff/source/text/XMLTextFrameHyperlinkContext.hxx index 5a265ad07e4f..c876c499f175 100644 --- a/xmloff/source/text/XMLTextFrameHyperlinkContext.hxx +++ b/xmloff/source/text/XMLTextFrameHyperlinkContext.hxx @@ -46,7 +46,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, css::text::TextContentAnchorType eDefaultAnchorType ); - virtual ~XMLTextFrameHyperlinkContext(); + virtual ~XMLTextFrameHyperlinkContext() override; virtual void EndElement() override; diff --git a/xmloff/source/text/XMLTextListBlockContext.hxx b/xmloff/source/text/XMLTextListBlockContext.hxx index d3fbbc8b8d44..cd2fc698aaa1 100644 --- a/xmloff/source/text/XMLTextListBlockContext.hxx +++ b/xmloff/source/text/XMLTextListBlockContext.hxx @@ -57,7 +57,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, const bool bRestartNumberingAtSubList = false ); - virtual ~XMLTextListBlockContext(); + virtual ~XMLTextListBlockContext() override; virtual void EndElement() override; diff --git a/xmloff/source/text/XMLTextListItemContext.hxx b/xmloff/source/text/XMLTextListItemContext.hxx index 97b4bb11d5eb..93546c3707f5 100644 --- a/xmloff/source/text/XMLTextListItemContext.hxx +++ b/xmloff/source/text/XMLTextListItemContext.hxx @@ -45,7 +45,7 @@ public: const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, const bool bIsHeader = false ); - virtual ~XMLTextListItemContext(); + virtual ~XMLTextListItemContext() override; virtual void EndElement() override; diff --git a/xmloff/source/text/XMLTextPropertySetContext.hxx b/xmloff/source/text/XMLTextPropertySetContext.hxx index 411df93cdd04..8a1ef702413a 100644 --- a/xmloff/source/text/XMLTextPropertySetContext.hxx +++ b/xmloff/source/text/XMLTextPropertySetContext.hxx @@ -39,7 +39,7 @@ public: const rtl::Reference < SvXMLImportPropertyMapper > &rMap, OUString& rDopCapTextStyleName ); - virtual ~XMLTextPropertySetContext(); + virtual ~XMLTextPropertySetContext() override; using SvXMLPropertySetContext::CreateChildContext; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/source/text/XMLTextShapeStyleContext.cxx b/xmloff/source/text/XMLTextShapeStyleContext.cxx index 6ad954645c5e..ff3a5589a3b0 100644 --- a/xmloff/source/text/XMLTextShapeStyleContext.cxx +++ b/xmloff/source/text/XMLTextShapeStyleContext.cxx @@ -50,7 +50,7 @@ public: ::std::vector< XMLPropertyState > &rProps, const rtl::Reference < SvXMLImportPropertyMapper > &rMap ); - virtual ~XMLTextShapePropertySetContext_Impl(); + virtual ~XMLTextShapePropertySetContext_Impl() override; using SvXMLPropertySetContext::CreateChildContext; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/source/text/XMLTrackedChangesImportContext.hxx b/xmloff/source/text/XMLTrackedChangesImportContext.hxx index e553d40290ba..47cefc4337f2 100644 --- a/xmloff/source/text/XMLTrackedChangesImportContext.hxx +++ b/xmloff/source/text/XMLTrackedChangesImportContext.hxx @@ -43,7 +43,7 @@ public: sal_uInt16 nPrefix, const OUString& rLocalName); - virtual ~XMLTrackedChangesImportContext(); + virtual ~XMLTrackedChangesImportContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; diff --git a/xmloff/source/text/txtdropi.hxx b/xmloff/source/text/txtdropi.hxx index 891e6a02d799..11445456a5dd 100644 --- a/xmloff/source/text/txtdropi.hxx +++ b/xmloff/source/text/txtdropi.hxx @@ -42,7 +42,7 @@ public: sal_Int32 nWholeWOrdIdx, ::std::vector< XMLPropertyState > &rProps ); - virtual ~XMLTextDropCapImportContext(); + virtual ~XMLTextDropCapImportContext() override; virtual void EndElement() override; diff --git a/xmloff/source/text/txtexppr.hxx b/xmloff/source/text/txtexppr.hxx index 8a853560cd94..7d17f8b31887 100644 --- a/xmloff/source/text/txtexppr.hxx +++ b/xmloff/source/text/txtexppr.hxx @@ -67,7 +67,7 @@ public: XMLTextExportPropertySetMapper( const rtl::Reference< XMLPropertySetMapper >& rMapper, SvXMLExport& rExt ); - virtual ~XMLTextExportPropertySetMapper(); + virtual ~XMLTextExportPropertySetMapper() override; virtual void handleElementItem( SvXMLExport& rExport, diff --git a/xmloff/source/text/txtparai.cxx b/xmloff/source/text/txtparai.cxx index c851e00b392a..1d32d26e42d1 100644 --- a/xmloff/source/text/txtparai.cxx +++ b/xmloff/source/text/txtparai.cxx @@ -312,7 +312,7 @@ public: sal_uInt8 nSFConvFlags ); - virtual ~XMLImpSpanContext_Impl(); + virtual ~XMLImpSpanContext_Impl() override; static SvXMLImportContext *CreateChildContext( SvXMLImport& rImport, @@ -347,7 +347,7 @@ public: XMLHints_Impl& rHints, bool& rIgnLeadSpace ); - virtual ~XMLImpHyperlinkContext_Impl(); + virtual ~XMLImpHyperlinkContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -478,7 +478,7 @@ public: XMLHints_Impl& rHints, bool& rIgnLeadSpace ); - virtual ~XMLImpRubyBaseContext_Impl(); + virtual ~XMLImpRubyBaseContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -545,7 +545,7 @@ public: XMLHints_Impl& rHints, bool& rIgnLeadSpace ); - virtual ~XMLImpRubyContext_Impl(); + virtual ~XMLImpRubyContext_Impl() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -569,7 +569,7 @@ public: const Reference< xml::sax::XAttributeList > & xAttrList, XMLImpRubyContext_Impl & rParent ); - virtual ~XMLImpRubyTextContext_Impl(); + virtual ~XMLImpRubyTextContext_Impl() override; virtual void Characters( const OUString& rChars ) override; }; @@ -708,7 +708,7 @@ public: XMLHints_Impl& i_rHints, bool & i_rIgnoreLeadingSpace ); - virtual ~XMLMetaImportContextBase(); + virtual ~XMLMetaImportContextBase() override; virtual void StartElement( const Reference<xml::sax::XAttributeList> & i_xAttrList) override; diff --git a/xmloff/source/text/txtparai.hxx b/xmloff/source/text/txtparai.hxx index 7c59418cfba7..495bd26a73ab 100644 --- a/xmloff/source/text/txtparai.hxx +++ b/xmloff/source/text/txtparai.hxx @@ -63,7 +63,7 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, bool bHeading ); - virtual ~XMLParaContext(); + virtual ~XMLParaContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -94,7 +94,7 @@ public: const OUString& i_rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList > & i_xAttrList ); - virtual ~XMLNumberedParaContext(); + virtual ~XMLNumberedParaContext() override; virtual void EndElement() override; diff --git a/xmloff/source/text/txtparaimphint.hxx b/xmloff/source/text/txtparaimphint.hxx index 0a2b9ca8540e..eebc5f763951 100644 --- a/xmloff/source/text/txtparaimphint.hxx +++ b/xmloff/source/text/txtparaimphint.hxx @@ -76,7 +76,7 @@ public: sStyleName( rStyleName ) { } - virtual ~XMLStyleHint_Impl() {} + virtual ~XMLStyleHint_Impl() override {} const OUString& GetStyleName() const { return sStyleName; } }; @@ -94,7 +94,7 @@ public: { } - virtual ~XMLReferenceHint_Impl() {} + virtual ~XMLReferenceHint_Impl() override {} const OUString& GetRefName() const { return sRefName; } }; @@ -160,7 +160,7 @@ public: { } - virtual ~XMLIndexMarkHint_Impl() {} + virtual ~XMLIndexMarkHint_Impl() override {} const css::uno::Reference<css::beans::XPropertySet> & GetMark() const { return xIndexMarkPropSet; } @@ -181,7 +181,7 @@ public: { } - virtual ~XMLTextFrameHint_Impl() + virtual ~XMLTextFrameHint_Impl() override { } @@ -238,7 +238,7 @@ public: { } - virtual ~XMLDrawHint_Impl() + virtual ~XMLDrawHint_Impl() override { } diff --git a/xmloff/source/text/txtprhdl.cxx b/xmloff/source/text/txtprhdl.cxx index ce9745f6b5af..8c6615ddad83 100644 --- a/xmloff/source/text/txtprhdl.cxx +++ b/xmloff/source/text/txtprhdl.cxx @@ -247,7 +247,7 @@ static SvXMLEnumMapEntry const pXML_VerticalAlign_Enum[] = class XMLDropCapPropHdl_Impl : public XMLPropertyHandler { public: - virtual ~XMLDropCapPropHdl_Impl (); + virtual ~XMLDropCapPropHdl_Impl () override; virtual bool equals( const css::uno::Any& r1, @@ -303,7 +303,7 @@ bool XMLDropCapPropHdl_Impl::exportXML( class XMLOpaquePropHdl_Impl : public XMLPropertyHandler { public: - virtual ~XMLOpaquePropHdl_Impl (); + virtual ~XMLOpaquePropHdl_Impl () override; virtual bool importXML( const OUString& rStrImpValue, @@ -353,7 +353,7 @@ XMLOpaquePropHdl_Impl::~XMLOpaquePropHdl_Impl () class XMLContourModePropHdl_Impl : public XMLPropertyHandler { public: - virtual ~XMLContourModePropHdl_Impl (); + virtual ~XMLContourModePropHdl_Impl () override; virtual bool importXML( const OUString& rStrImpValue, @@ -403,7 +403,7 @@ XMLContourModePropHdl_Impl::~XMLContourModePropHdl_Impl() class XMLParagraphOnlyPropHdl_Impl : public XMLPropertyHandler { public: - virtual ~XMLParagraphOnlyPropHdl_Impl (); + virtual ~XMLParagraphOnlyPropHdl_Impl () override; virtual bool importXML( const OUString& rStrImpValue, @@ -467,7 +467,7 @@ SvXMLEnumMapEntry const pXML_Wrap_Enum[] = class XMLWrapPropHdl_Impl : public XMLPropertyHandler { public: - virtual ~XMLWrapPropHdl_Impl (); + virtual ~XMLWrapPropHdl_Impl () override; virtual bool importXML( const OUString& rStrImpValue, @@ -521,7 +521,7 @@ class XMLFrameProtectPropHdl_Impl : public XMLPropertyHandler public: explicit XMLFrameProtectPropHdl_Impl( enum XMLTokenEnum eVal ) : sVal( GetXMLToken(eVal) ) {} - virtual ~XMLFrameProtectPropHdl_Impl (); + virtual ~XMLFrameProtectPropHdl_Impl () override; virtual bool importXML( const OUString& rStrImpValue, @@ -710,7 +710,7 @@ bool XMLTextColumnsPropertyHandler::exportXML( class XMLHoriMirrorPropHdl_Impl : public XMLPropertyHandler { public: - virtual ~XMLHoriMirrorPropHdl_Impl (); + virtual ~XMLHoriMirrorPropHdl_Impl () override; virtual bool importXML( const OUString& rStrImpValue, @@ -762,7 +762,7 @@ public: XMLGrfMirrorPropHdl_Impl( enum XMLTokenEnum eVal, bool bH ) : sVal( GetXMLToken( eVal ) ), bHori( bH ) {} - virtual ~XMLGrfMirrorPropHdl_Impl (); + virtual ~XMLGrfMirrorPropHdl_Impl () override; virtual bool importXML( const OUString& rStrImpValue, @@ -856,7 +856,7 @@ class XMLTextEmphasizePropHdl_Impl : public XMLPropertyHandler { public: XMLTextEmphasizePropHdl_Impl() {} - virtual ~XMLTextEmphasizePropHdl_Impl(); + virtual ~XMLTextEmphasizePropHdl_Impl() override; virtual bool importXML( const OUString& rStrImpValue, @@ -957,7 +957,7 @@ class XMLTextCombineCharPropHdl_Impl : public XMLPropertyHandler { public: XMLTextCombineCharPropHdl_Impl() {} - virtual ~XMLTextCombineCharPropHdl_Impl(); + virtual ~XMLTextCombineCharPropHdl_Impl() override; virtual bool importXML( const OUString& rStrImpValue, @@ -1001,7 +1001,7 @@ class XMLTextRelWidthHeightPropHdl_Impl : public XMLPropertyHandler { public: XMLTextRelWidthHeightPropHdl_Impl() {} - virtual ~XMLTextRelWidthHeightPropHdl_Impl(); + virtual ~XMLTextRelWidthHeightPropHdl_Impl() override; virtual bool importXML( const OUString& rStrImpValue, @@ -1056,7 +1056,7 @@ class XMLTextSyncWidthHeightPropHdl_Impl : public XMLPropertyHandler public: explicit XMLTextSyncWidthHeightPropHdl_Impl( enum XMLTokenEnum eValue ) : sValue( GetXMLToken(eValue) ) {} - virtual ~XMLTextSyncWidthHeightPropHdl_Impl(); + virtual ~XMLTextSyncWidthHeightPropHdl_Impl() override; virtual bool importXML( const OUString& rStrImpValue, @@ -1102,7 +1102,7 @@ class XMLTextRotationAnglePropHdl_Impl : public XMLPropertyHandler public: XMLTextRotationAnglePropHdl_Impl() {} - virtual ~XMLTextRotationAnglePropHdl_Impl(); + virtual ~XMLTextRotationAnglePropHdl_Impl() override; virtual bool importXML( const OUString& rStrImpValue, @@ -1165,7 +1165,7 @@ class XMLNumber8OneBasedHdl : public XMLPropertyHandler public: XMLNumber8OneBasedHdl() {} - virtual ~XMLNumber8OneBasedHdl() {}; + virtual ~XMLNumber8OneBasedHdl() override {}; virtual bool importXML( const OUString& rStrImpValue, diff --git a/xmloff/source/text/txtprhdl.hxx b/xmloff/source/text/txtprhdl.hxx index f92d700b5346..2a823ac32e8b 100644 --- a/xmloff/source/text/txtprhdl.hxx +++ b/xmloff/source/text/txtprhdl.hxx @@ -30,7 +30,7 @@ class XMLTextPropertyHandlerFactory : public XMLPropertyHandlerFactory public: XMLTextPropertyHandlerFactory(); - virtual ~XMLTextPropertyHandlerFactory(); + virtual ~XMLTextPropertyHandlerFactory() override; virtual const XMLPropertyHandler* GetPropertyHandler( sal_Int32 nType ) const override ; }; diff --git a/xmloff/source/transform/ChartOASISTContext.hxx b/xmloff/source/transform/ChartOASISTContext.hxx index b66078e99f7f..169f4452e715 100644 --- a/xmloff/source/transform/ChartOASISTContext.hxx +++ b/xmloff/source/transform/ChartOASISTContext.hxx @@ -27,7 +27,7 @@ class XMLChartOASISTransformerContext : public XMLTransformerContext public: XMLChartOASISTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLChartOASISTransformerContext(); + virtual ~XMLChartOASISTransformerContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; diff --git a/xmloff/source/transform/ChartOOoTContext.hxx b/xmloff/source/transform/ChartOOoTContext.hxx index ec9096134e79..1726410b14fb 100644 --- a/xmloff/source/transform/ChartOOoTContext.hxx +++ b/xmloff/source/transform/ChartOOoTContext.hxx @@ -27,7 +27,7 @@ class XMLChartOOoTransformerContext : public XMLTransformerContext public: XMLChartOOoTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLChartOOoTransformerContext(); + virtual ~XMLChartOOoTransformerContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; diff --git a/xmloff/source/transform/ChartPlotAreaOASISTContext.cxx b/xmloff/source/transform/ChartPlotAreaOASISTContext.cxx index 5280a445a32f..e1eeb3b4f0b6 100644 --- a/xmloff/source/transform/ChartPlotAreaOASISTContext.cxx +++ b/xmloff/source/transform/ChartPlotAreaOASISTContext.cxx @@ -38,7 +38,7 @@ public: XMLAxisOASISContext( XMLTransformerBase& rTransformer, const OUString& rQName, ::rtl::Reference< XMLPersAttrListTContext > & rOutCategoriesContext ); - virtual ~XMLAxisOASISContext(); + virtual ~XMLAxisOASISContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/source/transform/ChartPlotAreaOASISTContext.hxx b/xmloff/source/transform/ChartPlotAreaOASISTContext.hxx index fc1bc7b80c9b..fd86588c1f63 100644 --- a/xmloff/source/transform/ChartPlotAreaOASISTContext.hxx +++ b/xmloff/source/transform/ChartPlotAreaOASISTContext.hxx @@ -28,7 +28,7 @@ class XMLChartPlotAreaOASISTContext : public XMLProcAttrTransformerContext public: explicit XMLChartPlotAreaOASISTContext( XMLTransformerBase & rTransformer, const OUString & rQName ); - virtual ~XMLChartPlotAreaOASISTContext(); + virtual ~XMLChartPlotAreaOASISTContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/ChartPlotAreaOOoTContext.cxx b/xmloff/source/transform/ChartPlotAreaOOoTContext.cxx index d9264d3a760f..677bd1ad8b43 100644 --- a/xmloff/source/transform/ChartPlotAreaOOoTContext.cxx +++ b/xmloff/source/transform/ChartPlotAreaOOoTContext.cxx @@ -37,7 +37,7 @@ class XMLAxisOOoContext : public XMLPersElemContentTContext public: XMLAxisOOoContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLAxisOOoContext(); + virtual ~XMLAxisOOoContext() override; virtual void StartElement( const Reference< xml::sax::XAttributeList >& rAttrList ) override; diff --git a/xmloff/source/transform/ChartPlotAreaOOoTContext.hxx b/xmloff/source/transform/ChartPlotAreaOOoTContext.hxx index b18df34be5dc..ea1d5eff793f 100644 --- a/xmloff/source/transform/ChartPlotAreaOOoTContext.hxx +++ b/xmloff/source/transform/ChartPlotAreaOOoTContext.hxx @@ -37,7 +37,7 @@ class XMLChartPlotAreaOOoTContext : public XMLProcAttrTransformerContext public: explicit XMLChartPlotAreaOOoTContext( XMLTransformerBase & rTransformer, const OUString & rQName ); - virtual ~XMLChartPlotAreaOOoTContext(); + virtual ~XMLChartPlotAreaOOoTContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/ControlOASISTContext.hxx b/xmloff/source/transform/ControlOASISTContext.hxx index 6e4eac2aaf5d..88af8e161032 100644 --- a/xmloff/source/transform/ControlOASISTContext.hxx +++ b/xmloff/source/transform/ControlOASISTContext.hxx @@ -32,7 +32,7 @@ public: const OUString& rQName, bool bCreateControl ); - virtual ~XMLControlOASISTransformerContext(); + virtual ~XMLControlOASISTransformerContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; diff --git a/xmloff/source/transform/ControlOOoTContext.hxx b/xmloff/source/transform/ControlOOoTContext.hxx index 7e345ea2d42f..d95510d5a9ab 100644 --- a/xmloff/source/transform/ControlOOoTContext.hxx +++ b/xmloff/source/transform/ControlOOoTContext.hxx @@ -32,7 +32,7 @@ public: XMLControlOOoTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLControlOOoTransformerContext(); + virtual ~XMLControlOOoTransformerContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/CreateElemTContext.hxx b/xmloff/source/transform/CreateElemTContext.hxx index 51628e218ffd..3fe38d40860b 100644 --- a/xmloff/source/transform/CreateElemTContext.hxx +++ b/xmloff/source/transform/CreateElemTContext.hxx @@ -32,7 +32,7 @@ public: const OUString& rQName, sal_uInt16 nActionMap ); - virtual ~XMLCreateElemTransformerContext(); + virtual ~XMLCreateElemTransformerContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; diff --git a/xmloff/source/transform/DeepTContext.hxx b/xmloff/source/transform/DeepTContext.hxx index d1e9c068aca3..efbed3b40415 100644 --- a/xmloff/source/transform/DeepTContext.hxx +++ b/xmloff/source/transform/DeepTContext.hxx @@ -52,7 +52,7 @@ public: ::xmloff::token::XMLTokenEnum eToken, sal_uInt16 nActionMap ); - virtual ~XMLPersElemContentTContext(); + virtual ~XMLPersElemContentTContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/DlgOASISTContext.hxx b/xmloff/source/transform/DlgOASISTContext.hxx index e50dd31c2c95..a1cde315acfa 100644 --- a/xmloff/source/transform/DlgOASISTContext.hxx +++ b/xmloff/source/transform/DlgOASISTContext.hxx @@ -27,7 +27,7 @@ class XMLDlgOASISTransformerContext : public XMLTransformerContext public: XMLDlgOASISTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLDlgOASISTransformerContext(); + virtual ~XMLDlgOASISTransformerContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; diff --git a/xmloff/source/transform/DocumentTContext.hxx b/xmloff/source/transform/DocumentTContext.hxx index f204d48328be..eaf66137e4b6 100644 --- a/xmloff/source/transform/DocumentTContext.hxx +++ b/xmloff/source/transform/DocumentTContext.hxx @@ -36,7 +36,7 @@ public: // ends. By default, nothing is done. // Note that virtual methods cannot be used inside destructors. Use // EndElement instead if this is required. - virtual ~XMLDocumentTransformerContext(); + virtual ~XMLDocumentTransformerContext() override; // StartElement is called after a context has been constructed and // before a elements context is parsed. It may be used for actions that diff --git a/xmloff/source/transform/EventOASISTContext.hxx b/xmloff/source/transform/EventOASISTContext.hxx index 502cd905aa36..b01f7e54b09f 100644 --- a/xmloff/source/transform/EventOASISTContext.hxx +++ b/xmloff/source/transform/EventOASISTContext.hxx @@ -29,7 +29,7 @@ class XMLEventOASISTransformerContext : public XMLRenameElemTransformerContext public: XMLEventOASISTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLEventOASISTransformerContext(); + virtual ~XMLEventOASISTransformerContext() override; static XMLTransformerOASISEventMap_Impl *CreateFormEventMap(); static XMLTransformerOASISEventMap_Impl *CreateEventMap(); diff --git a/xmloff/source/transform/EventOOoTContext.hxx b/xmloff/source/transform/EventOOoTContext.hxx index b3d879fce446..1d63c85da094 100644 --- a/xmloff/source/transform/EventOOoTContext.hxx +++ b/xmloff/source/transform/EventOOoTContext.hxx @@ -32,7 +32,7 @@ public: XMLEventOOoTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName, bool bPersistent = false ); - virtual ~XMLEventOOoTransformerContext(); + virtual ~XMLEventOOoTransformerContext() override; static XMLTransformerOOoEventMap_Impl *CreateEventMap(); static void FlushEventMap( XMLTransformerOOoEventMap_Impl *p ); diff --git a/xmloff/source/transform/FlatTContext.hxx b/xmloff/source/transform/FlatTContext.hxx index ffeab6a8e2c2..06d525c76df6 100644 --- a/xmloff/source/transform/FlatTContext.hxx +++ b/xmloff/source/transform/FlatTContext.hxx @@ -45,7 +45,7 @@ public: // ends. By default, nothing is done. // Note that virtual methods cannot be used inside destructors. Use // EndElement instead if this is required. - virtual ~XMLPersTextContentTContext(); + virtual ~XMLPersTextContentTContext() override; // This method is called for all characters that are contained in the // current element. diff --git a/xmloff/source/transform/FormPropOASISTContext.hxx b/xmloff/source/transform/FormPropOASISTContext.hxx index 8666f0044e01..a2b50270e312 100644 --- a/xmloff/source/transform/FormPropOASISTContext.hxx +++ b/xmloff/source/transform/FormPropOASISTContext.hxx @@ -35,7 +35,7 @@ public: const OUString& rQName, ::xmloff::token::XMLTokenEnum eLocalName ); - virtual ~XMLFormPropOASISTransformerContext(); + virtual ~XMLFormPropOASISTransformerContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/transform/FormPropOOoTContext.cxx b/xmloff/source/transform/FormPropOOoTContext.cxx index cfcb896813e2..1303099693b7 100644 --- a/xmloff/source/transform/FormPropOOoTContext.cxx +++ b/xmloff/source/transform/FormPropOOoTContext.cxx @@ -42,7 +42,7 @@ public: XMLFormPropValueTContext_Impl( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLFormPropValueTContext_Impl(); + virtual ~XMLFormPropValueTContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; diff --git a/xmloff/source/transform/FormPropOOoTContext.hxx b/xmloff/source/transform/FormPropOOoTContext.hxx index 6630cc5516f4..de3f3a3e865c 100644 --- a/xmloff/source/transform/FormPropOOoTContext.hxx +++ b/xmloff/source/transform/FormPropOOoTContext.hxx @@ -44,7 +44,7 @@ public: XMLFormPropOOoTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLFormPropOOoTransformerContext(); + virtual ~XMLFormPropOOoTransformerContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/FrameOASISTContext.hxx b/xmloff/source/transform/FrameOASISTContext.hxx index 55f0d549a0b9..bdd17957b728 100644 --- a/xmloff/source/transform/FrameOASISTContext.hxx +++ b/xmloff/source/transform/FrameOASISTContext.hxx @@ -38,7 +38,7 @@ public: XMLFrameOASISTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLFrameOASISTransformerContext(); + virtual ~XMLFrameOASISTransformerContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/FrameOOoTContext.hxx b/xmloff/source/transform/FrameOOoTContext.hxx index c49b42d70442..595c0ac6756c 100644 --- a/xmloff/source/transform/FrameOOoTContext.hxx +++ b/xmloff/source/transform/FrameOOoTContext.hxx @@ -30,7 +30,7 @@ public: XMLFrameOOoTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLFrameOOoTransformerContext(); + virtual ~XMLFrameOOoTransformerContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/IgnoreTContext.hxx b/xmloff/source/transform/IgnoreTContext.hxx index 024692774755..639c32ccc0c9 100644 --- a/xmloff/source/transform/IgnoreTContext.hxx +++ b/xmloff/source/transform/IgnoreTContext.hxx @@ -51,7 +51,7 @@ public: // ends. By default, nothing is done. // Note that virtual methods cannot be used inside destructors. Use // EndElement instead if this is required. - virtual ~XMLIgnoreTransformerContext(); + virtual ~XMLIgnoreTransformerContext() override; // Create a children element context. By default, the import's // CreateContext method is called to create a new default context. diff --git a/xmloff/source/transform/MergeElemTContext.cxx b/xmloff/source/transform/MergeElemTContext.cxx index 6b3df5fa947e..8b49283cfdfa 100644 --- a/xmloff/source/transform/MergeElemTContext.cxx +++ b/xmloff/source/transform/MergeElemTContext.cxx @@ -37,7 +37,7 @@ public: XMLParagraphTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLParagraphTransformerContext(); + virtual ~XMLParagraphTransformerContext() override; // Create a children element context. By default, the import's // CreateContext method is called to create a new default context. @@ -76,7 +76,7 @@ public: const OUString& rQName, sal_uInt16 nPrefix, ::xmloff::token::XMLTokenEnum eToken ); - virtual ~XMLPersTextContentRNGTransformTContext(); + virtual ~XMLPersTextContentRNGTransformTContext() override; virtual void Characters( const OUString& rChars ) override; }; diff --git a/xmloff/source/transform/MergeElemTContext.hxx b/xmloff/source/transform/MergeElemTContext.hxx index 07602f681c02..5cce49567cc2 100644 --- a/xmloff/source/transform/MergeElemTContext.hxx +++ b/xmloff/source/transform/MergeElemTContext.hxx @@ -41,7 +41,7 @@ public: const OUString& rQName, sal_uInt16 nActionMap ); - virtual ~XMLMergeElemTransformerContext(); + virtual ~XMLMergeElemTransformerContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/MetaTContext.hxx b/xmloff/source/transform/MetaTContext.hxx index f6ed27136dbf..4695b2bb6a40 100644 --- a/xmloff/source/transform/MetaTContext.hxx +++ b/xmloff/source/transform/MetaTContext.hxx @@ -45,7 +45,7 @@ public: // ends. By default, nothing is done. // Note that virtual methods cannot be used inside destructors. Use // EndElement instead if this is required. - virtual ~XMLMetaTransformerContext(); + virtual ~XMLMetaTransformerContext() override; // Create a children element context. By default, the import's // CreateContext method is called to create a new default context. diff --git a/xmloff/source/transform/MutableAttrList.hxx b/xmloff/source/transform/MutableAttrList.hxx index 540f4c4d8cb8..93046c437415 100644 --- a/xmloff/source/transform/MutableAttrList.hxx +++ b/xmloff/source/transform/MutableAttrList.hxx @@ -44,7 +44,7 @@ public: XMLMutableAttributeList( const css::uno::Reference< css::xml::sax::XAttributeList> & rAttrList, bool bClone=false ); - virtual ~XMLMutableAttributeList(); + virtual ~XMLMutableAttributeList() override; static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw(); diff --git a/xmloff/source/transform/NotesTContext.hxx b/xmloff/source/transform/NotesTContext.hxx index b7f9a6eb5823..88c0c7c424c4 100644 --- a/xmloff/source/transform/NotesTContext.hxx +++ b/xmloff/source/transform/NotesTContext.hxx @@ -34,7 +34,7 @@ public: ::xmloff::token::XMLTokenEnum m_eToken, bool bPersistent ); - virtual ~XMLNotesTransformerContext(); + virtual ~XMLNotesTransformerContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/OOo2Oasis.cxx b/xmloff/source/transform/OOo2Oasis.cxx index e6937ac0c5b6..3ea21c55fa1d 100644 --- a/xmloff/source/transform/OOo2Oasis.cxx +++ b/xmloff/source/transform/OOo2Oasis.cxx @@ -1096,7 +1096,7 @@ public: sal_uInt16 nPrefix, ::xmloff::token::XMLTokenEnum eToken ); - virtual ~XMLDocumentTransformerContext_Impl(); + virtual ~XMLDocumentTransformerContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -1237,7 +1237,7 @@ public: XMLBodyTransformerContext_Impl( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLBodyTransformerContext_Impl(); + virtual ~XMLBodyTransformerContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -1295,7 +1295,7 @@ public: XMLTabStopOOoTContext_Impl( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLTabStopOOoTContext_Impl(); + virtual ~XMLTabStopOOoTContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; @@ -1393,7 +1393,7 @@ public: sal_uInt16 nPrefix, XMLTokenEnum eToken ); - virtual ~XMLTrackedChangesOOoTContext_Impl(); + virtual ~XMLTrackedChangesOOoTContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; @@ -1462,7 +1462,7 @@ public: XMLTableOOoTransformerContext_Impl( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLTableOOoTransformerContext_Impl(); + virtual ~XMLTableOOoTransformerContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/transform/OOo2Oasis.hxx b/xmloff/source/transform/OOo2Oasis.hxx index cab422e77175..1dbd82c40e3d 100644 --- a/xmloff/source/transform/OOo2Oasis.hxx +++ b/xmloff/source/transform/OOo2Oasis.hxx @@ -49,7 +49,7 @@ protected: public: OOo2OasisTransformer( const sal_Char *pImplName=nullptr, const sal_Char *pSubServiceName=nullptr ) throw(); - virtual ~OOo2OasisTransformer() throw(); + virtual ~OOo2OasisTransformer() throw() override; static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw(); diff --git a/xmloff/source/transform/Oasis2OOo.cxx b/xmloff/source/transform/Oasis2OOo.cxx index 209bf61cc5db..87c898df46a1 100644 --- a/xmloff/source/transform/Oasis2OOo.cxx +++ b/xmloff/source/transform/Oasis2OOo.cxx @@ -1150,7 +1150,7 @@ public: XMLTableTransformerContext_Impl( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLTableTransformerContext_Impl(); + virtual ~XMLTableTransformerContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -1248,7 +1248,7 @@ public: XMLBodyOASISTransformerContext_Impl( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLBodyOASISTransformerContext_Impl(); + virtual ~XMLBodyOASISTransformerContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; @@ -1304,7 +1304,7 @@ public: XMLTabStopOASISTContext_Impl( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLTabStopOASISTContext_Impl(); + virtual ~XMLTabStopOASISTContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; @@ -1434,7 +1434,7 @@ public: XMLConfigItemTContext_Impl( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLConfigItemTContext_Impl(); + virtual ~XMLConfigItemTContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; @@ -1542,7 +1542,7 @@ public: sal_uInt16 nPrefix, XMLTokenEnum eToken ); - virtual ~XMLTrackedChangesOASISTContext_Impl(); + virtual ~XMLTrackedChangesOASISTContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; diff --git a/xmloff/source/transform/Oasis2OOo.hxx b/xmloff/source/transform/Oasis2OOo.hxx index 829175e029cb..19adc512f265 100644 --- a/xmloff/source/transform/Oasis2OOo.hxx +++ b/xmloff/source/transform/Oasis2OOo.hxx @@ -42,7 +42,7 @@ protected: public: Oasis2OOoTransformer () throw(); - virtual ~Oasis2OOoTransformer() throw(); + virtual ~Oasis2OOoTransformer() throw() override; static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw(); diff --git a/xmloff/source/transform/PersAttrListTContext.hxx b/xmloff/source/transform/PersAttrListTContext.hxx index d93455ff0069..4206c3de1a72 100644 --- a/xmloff/source/transform/PersAttrListTContext.hxx +++ b/xmloff/source/transform/PersAttrListTContext.hxx @@ -65,7 +65,7 @@ public: // ends. By default, nothing is done. // Note that virtual methods cannot be used inside destructors. Use // EndElement instead if this is required. - virtual ~XMLPersAttrListTContext(); + virtual ~XMLPersAttrListTContext() override; // Create a children element context. By default, the import's // CreateContext method is called to create a new default context. diff --git a/xmloff/source/transform/PersMixedContentTContext.cxx b/xmloff/source/transform/PersMixedContentTContext.cxx index 43f49af454b9..cf4efe288047 100644 --- a/xmloff/source/transform/PersMixedContentTContext.cxx +++ b/xmloff/source/transform/PersMixedContentTContext.cxx @@ -32,7 +32,7 @@ class XMLPersTextTContext_Impl : public XMLTransformerContext public: XMLPersTextTContext_Impl( XMLTransformerBase& rTransformer, const OUString& rChars ); - virtual ~XMLPersTextTContext_Impl(); + virtual ~XMLPersTextTContext_Impl() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/PersMixedContentTContext.hxx b/xmloff/source/transform/PersMixedContentTContext.hxx index b9dc6d76308d..b7c1f5221fc4 100644 --- a/xmloff/source/transform/PersMixedContentTContext.hxx +++ b/xmloff/source/transform/PersMixedContentTContext.hxx @@ -52,7 +52,7 @@ public: virtual void Characters( const OUString& rChars ) override; - virtual ~XMLPersMixedContentTContext(); + virtual ~XMLPersMixedContentTContext() override; }; #endif // INCLUDED_XMLOFF_SOURCE_TRANSFORM_PERSMIXEDCONTENTTCONTEXT_HXX diff --git a/xmloff/source/transform/ProcAddAttrTContext.hxx b/xmloff/source/transform/ProcAddAttrTContext.hxx index 2ccf6e067355..78705805f054 100644 --- a/xmloff/source/transform/ProcAddAttrTContext.hxx +++ b/xmloff/source/transform/ProcAddAttrTContext.hxx @@ -37,7 +37,7 @@ public: ::xmloff::token::XMLTokenEnum eAToken, ::xmloff::token::XMLTokenEnum eVToken ); - virtual ~XMLProcAddAttrTransformerContext(); + virtual ~XMLProcAddAttrTransformerContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; }; diff --git a/xmloff/source/transform/ProcAttrTContext.hxx b/xmloff/source/transform/ProcAttrTContext.hxx index 5263d6d34470..f710db3ad2c0 100644 --- a/xmloff/source/transform/ProcAttrTContext.hxx +++ b/xmloff/source/transform/ProcAttrTContext.hxx @@ -44,7 +44,7 @@ public: ::xmloff::token::XMLTokenEnum eToken, sal_uInt16 nActionMap ); - virtual ~XMLProcAttrTransformerContext(); + virtual ~XMLProcAttrTransformerContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/transform/RenameElemTContext.hxx b/xmloff/source/transform/RenameElemTContext.hxx index c5d1751e35a8..776c312e1c3c 100644 --- a/xmloff/source/transform/RenameElemTContext.hxx +++ b/xmloff/source/transform/RenameElemTContext.hxx @@ -53,7 +53,7 @@ public: // ends. By default, nothing is done. // Note that virtual methods cannot be used inside destructors. Use // EndElement instead if this is required. - virtual ~XMLRenameElemTransformerContext(); + virtual ~XMLRenameElemTransformerContext() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; diff --git a/xmloff/source/transform/StyleOASISTContext.cxx b/xmloff/source/transform/StyleOASISTContext.cxx index eb236200f778..9451729169d9 100644 --- a/xmloff/source/transform/StyleOASISTContext.cxx +++ b/xmloff/source/transform/StyleOASISTContext.cxx @@ -83,7 +83,7 @@ public: const OUString& rStyleFamily, bool _bControlStyle = false ); - virtual ~XMLPropertiesTContext_Impl(); + virtual ~XMLPropertiesTContext_Impl() override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; diff --git a/xmloff/source/transform/StyleOASISTContext.hxx b/xmloff/source/transform/StyleOASISTContext.hxx index 8b1149ccf596..0874cf73d80b 100644 --- a/xmloff/source/transform/StyleOASISTContext.hxx +++ b/xmloff/source/transform/StyleOASISTContext.hxx @@ -44,7 +44,7 @@ public: ::xmloff::token::XMLTokenEnum eToken, bool bPersistent=false ); - virtual ~XMLStyleOASISTContext(); + virtual ~XMLStyleOASISTContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/StyleOOoTContext.cxx b/xmloff/source/transform/StyleOOoTContext.cxx index 9d2d46c6b625..194ce97f67d4 100644 --- a/xmloff/source/transform/StyleOOoTContext.cxx +++ b/xmloff/source/transform/StyleOOoTContext.cxx @@ -150,7 +150,7 @@ public: XMLTypedPropertiesOOoTContext_Impl( XMLTransformerBase& rTransformer, const OUString& rQName ); - virtual ~XMLTypedPropertiesOOoTContext_Impl(); + virtual ~XMLTypedPropertiesOOoTContext_Impl() override; using XMLPersAttrListTContext::AddAttribute; void AddAttribute( const OUString &sName , @@ -235,7 +235,7 @@ public: const XMLPropTypes& rTypes, bool bPersistent ); - virtual ~XMLPropertiesOOoTContext_Impl(); + virtual ~XMLPropertiesOOoTContext_Impl() override; rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, diff --git a/xmloff/source/transform/StyleOOoTContext.hxx b/xmloff/source/transform/StyleOOoTContext.hxx index 12cb4192f2b3..84f11e7616d9 100644 --- a/xmloff/source/transform/StyleOOoTContext.hxx +++ b/xmloff/source/transform/StyleOOoTContext.hxx @@ -45,7 +45,7 @@ public: ::xmloff::token::XMLTokenEnum eToken, bool bPersistent ); - virtual ~XMLStyleOOoTContext(); + virtual ~XMLStyleOOoTContext() override; virtual rtl::Reference<XMLTransformerContext> CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/transform/TransformerBase.hxx b/xmloff/source/transform/TransformerBase.hxx index 045d7683ce02..ab4ac1c83c00 100644 --- a/xmloff/source/transform/TransformerBase.hxx +++ b/xmloff/source/transform/TransformerBase.hxx @@ -80,7 +80,7 @@ protected: public: XMLTransformerBase( XMLTransformerActionInit *pInit=nullptr, ::xmloff::token::XMLTokenEnum *pTKMapInit=nullptr ) throw(); - virtual ~XMLTransformerBase() throw(); + virtual ~XMLTransformerBase() throw() override; // css::xml::sax::XDocumentHandler virtual void SAL_CALL startDocument() diff --git a/xmloff/source/transform/TransformerContext.hxx b/xmloff/source/transform/TransformerContext.hxx index 8ecb8c9079b3..6f7a13add4cc 100644 --- a/xmloff/source/transform/TransformerContext.hxx +++ b/xmloff/source/transform/TransformerContext.hxx @@ -68,7 +68,7 @@ public: // ends. By default, nothing is done. // Note that virtual methods cannot be used inside destructors. Use // EndElement instead if this is required. - virtual ~XMLTransformerContext(); + virtual ~XMLTransformerContext() override; // Create a children element context. By default, the import's // CreateContext method is called to create a new default context. diff --git a/xmloff/source/xforms/SchemaContext.hxx b/xmloff/source/xforms/SchemaContext.hxx index 20c3eb6e6121..cd03695cc36a 100644 --- a/xmloff/source/xforms/SchemaContext.hxx +++ b/xmloff/source/xforms/SchemaContext.hxx @@ -42,7 +42,7 @@ public: sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference<css::xforms::XDataTypeRepository>& rRepository ); - virtual ~SchemaContext(); + virtual ~SchemaContext() override; // implement TokenContext methods: diff --git a/xmloff/source/xforms/SchemaRestrictionContext.hxx b/xmloff/source/xforms/SchemaRestrictionContext.hxx index 0382714fc34e..d5808aa459b5 100644 --- a/xmloff/source/xforms/SchemaRestrictionContext.hxx +++ b/xmloff/source/xforms/SchemaRestrictionContext.hxx @@ -46,7 +46,7 @@ public: const OUString& rLName, css::uno::Reference<css::xforms::XDataTypeRepository>& rRepository, const OUString& sTypeName ); - virtual ~SchemaRestrictionContext(); + virtual ~SchemaRestrictionContext() override; protected: // create mxDataType (if not already present) diff --git a/xmloff/source/xforms/SchemaSimpleTypeContext.hxx b/xmloff/source/xforms/SchemaSimpleTypeContext.hxx index 4f13868db99d..3ac9bf9a95ea 100644 --- a/xmloff/source/xforms/SchemaSimpleTypeContext.hxx +++ b/xmloff/source/xforms/SchemaSimpleTypeContext.hxx @@ -44,7 +44,7 @@ public: const OUString& rLName, const css::uno::Reference<css::xforms::XDataTypeRepository>& rRepository ); - virtual ~SchemaSimpleTypeContext(); + virtual ~SchemaSimpleTypeContext() override; // implement TokenContext methods: diff --git a/xmloff/source/xforms/TokenContext.hxx b/xmloff/source/xforms/TokenContext.hxx index 2b7bbfffeebd..e813236787d4 100644 --- a/xmloff/source/xforms/TokenContext.hxx +++ b/xmloff/source/xforms/TokenContext.hxx @@ -47,7 +47,7 @@ public: const SvXMLTokenMapEntry* pAttributes = nullptr, const SvXMLTokenMapEntry* pChildren = nullptr ); - virtual ~TokenContext(); + virtual ~TokenContext() override; // implement SvXMLImportContext methods: diff --git a/xmloff/source/xforms/XFormsBindContext.hxx b/xmloff/source/xforms/XFormsBindContext.hxx index a0e0b7468771..d5b962f10ce9 100644 --- a/xmloff/source/xforms/XFormsBindContext.hxx +++ b/xmloff/source/xforms/XFormsBindContext.hxx @@ -43,7 +43,7 @@ public: sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference<css::xforms::XModel2>& xModel ); - virtual ~XFormsBindContext(); + virtual ~XFormsBindContext() override; // implement SvXMLImportContext & TokenContext methods: diff --git a/xmloff/source/xforms/XFormsInstanceContext.hxx b/xmloff/source/xforms/XFormsInstanceContext.hxx index 44dc04b7130d..76f0fa7df429 100644 --- a/xmloff/source/xforms/XFormsInstanceContext.hxx +++ b/xmloff/source/xforms/XFormsInstanceContext.hxx @@ -46,7 +46,7 @@ public: sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference<css::xforms::XModel2> & xModel ); - virtual ~XFormsInstanceContext(); + virtual ~XFormsInstanceContext() override; // implement SvXMLImportContext & TokenContext methods: // We override CreateChildContext, because we want to read diff --git a/xmloff/source/xforms/XFormsModelContext.hxx b/xmloff/source/xforms/XFormsModelContext.hxx index b71baad466c6..ca4b8379a3ce 100644 --- a/xmloff/source/xforms/XFormsModelContext.hxx +++ b/xmloff/source/xforms/XFormsModelContext.hxx @@ -41,7 +41,7 @@ public: XFormsModelContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName ); - virtual ~XFormsModelContext(); + virtual ~XFormsModelContext() override; const css::uno::Reference<css::xforms::XModel2>& getModel() { return mxModel;} diff --git a/xmloff/source/xforms/XFormsSubmissionContext.hxx b/xmloff/source/xforms/XFormsSubmissionContext.hxx index a171ec834cf0..d93444f07ad4 100644 --- a/xmloff/source/xforms/XFormsSubmissionContext.hxx +++ b/xmloff/source/xforms/XFormsSubmissionContext.hxx @@ -42,7 +42,7 @@ public: sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference<css::xforms::XModel2>& xModel ); - virtual ~XFormsSubmissionContext(); + virtual ~XFormsSubmissionContext() override; // implement TokenContext methods: |