summaryrefslogtreecommitdiff
path: root/xmloff/source/style
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-09-13 13:09:01 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-09-13 13:19:22 +0200
commit91dd2db17bd6cb9b357d1d69b187174e31eabef0 (patch)
treed634de3a1a6820904b5699c2136b79b1a5a807c7 /xmloff/source/style
parent6f8ea7e89ea190b9462c945d55a3ad8777b2f3ef (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/source/style')
-rw-r--r--xmloff/source/style/DrawAspectHdl.hxx2
-rw-r--r--xmloff/source/style/FillStyleContext.hxx12
-rw-r--r--xmloff/source/style/PageHeaderFooterContext.hxx2
-rw-r--r--xmloff/source/style/PageMasterExportPropMapper.hxx2
-rw-r--r--xmloff/source/style/PageMasterImportPropMapper.hxx2
-rw-r--r--xmloff/source/style/PageMasterPropHdl.hxx14
-rw-r--r--xmloff/source/style/PageMasterPropHdlFactory.hxx2
-rw-r--r--xmloff/source/style/PageMasterPropMapper.hxx2
-rw-r--r--xmloff/source/style/PagePropertySetContext.hxx2
-rw-r--r--xmloff/source/style/XMLFontStylesContext_impl.hxx2
-rw-r--r--xmloff/source/style/XMLFootnoteSeparatorImport.hxx2
-rw-r--r--xmloff/source/style/adjushdl.hxx4
-rw-r--r--xmloff/source/style/backhdl.hxx2
-rw-r--r--xmloff/source/style/bordrhdl.hxx4
-rw-r--r--xmloff/source/style/breakhdl.hxx4
-rw-r--r--xmloff/source/style/cdouthdl.hxx8
-rw-r--r--xmloff/source/style/chrhghdl.hxx6
-rw-r--r--xmloff/source/style/chrlohdl.hxx8
-rw-r--r--xmloff/source/style/csmaphdl.hxx4
-rw-r--r--xmloff/source/style/durationhdl.hxx2
-rw-r--r--xmloff/source/style/escphdl.hxx4
-rw-r--r--xmloff/source/style/fonthdl.hxx8
-rw-r--r--xmloff/source/style/kernihdl.hxx2
-rw-r--r--xmloff/source/style/lspachdl.hxx6
-rw-r--r--xmloff/source/style/opaquhdl.hxx2
-rw-r--r--xmloff/source/style/postuhdl.hxx2
-rw-r--r--xmloff/source/style/shadwhdl.hxx2
-rw-r--r--xmloff/source/style/shdwdhdl.hxx2
-rw-r--r--xmloff/source/style/tabsthdl.hxx2
-rw-r--r--xmloff/source/style/undlihdl.hxx6
-rw-r--r--xmloff/source/style/weighhdl.hxx2
-rw-r--r--xmloff/source/style/xmlbahdl.hxx42
-rw-r--r--xmloff/source/style/xmlnumfi.cxx8
-rw-r--r--xmloff/source/style/xmlnumi.cxx6
-rw-r--r--xmloff/source/style/xmltabi.cxx2
35 files changed, 91 insertions, 91 deletions
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,