summaryrefslogtreecommitdiff
path: root/xmloff/source/chart
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/chart
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/chart')
-rw-r--r--xmloff/source/chart/ColorPropertySet.hxx2
-rw-r--r--xmloff/source/chart/SchXMLAutoStylePoolP.hxx2
-rw-r--r--xmloff/source/chart/SchXMLAxisContext.cxx4
-rw-r--r--xmloff/source/chart/SchXMLAxisContext.hxx2
-rw-r--r--xmloff/source/chart/SchXMLChartContext.hxx4
-rw-r--r--xmloff/source/chart/SchXMLEnumConverter.cxx4
-rw-r--r--xmloff/source/chart/SchXMLLegendContext.hxx2
-rw-r--r--xmloff/source/chart/SchXMLParagraphContext.hxx2
-rw-r--r--xmloff/source/chart/SchXMLPlotAreaContext.hxx12
-rw-r--r--xmloff/source/chart/SchXMLPropertyMappingContext.hxx2
-rw-r--r--xmloff/source/chart/SchXMLRegressionCurveObjectContext.hxx4
-rw-r--r--xmloff/source/chart/SchXMLSeries2Context.cxx2
-rw-r--r--xmloff/source/chart/SchXMLSeries2Context.hxx2
-rw-r--r--xmloff/source/chart/SchXMLTableContext.cxx2
-rw-r--r--xmloff/source/chart/SchXMLTableContext.hxx12
-rw-r--r--xmloff/source/chart/SchXMLTextListContext.cxx2
-rw-r--r--xmloff/source/chart/SchXMLTextListContext.hxx2
-rw-r--r--xmloff/source/chart/XMLAxisPositionPropertyHdl.hxx2
-rw-r--r--xmloff/source/chart/XMLChartPropertyContext.hxx2
-rw-r--r--xmloff/source/chart/XMLErrorBarStylePropertyHdl.hxx2
-rw-r--r--xmloff/source/chart/XMLErrorIndicatorPropertyHdl.hxx2
-rw-r--r--xmloff/source/chart/XMLLabelSeparatorContext.hxx2
-rw-r--r--xmloff/source/chart/XMLSymbolImageContext.hxx2
-rw-r--r--xmloff/source/chart/XMLSymbolTypePropertyHdl.hxx2
-rw-r--r--xmloff/source/chart/XMLTextOrientationHdl.hxx2
-rw-r--r--xmloff/source/chart/contexts.cxx2
-rw-r--r--xmloff/source/chart/contexts.hxx6
27 files changed, 43 insertions, 43 deletions
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(