summaryrefslogtreecommitdiff
path: root/oox/inc
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 /oox/inc
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 'oox/inc')
-rw-r--r--oox/inc/drawingml/ThemeOverrideFragmentHandler.hxx2
-rw-r--r--oox/inc/drawingml/chart/axiscontext.hxx12
-rw-r--r--oox/inc/drawingml/chart/axisconverter.hxx4
-rw-r--r--oox/inc/drawingml/chart/chartcontextbase.hxx8
-rw-r--r--oox/inc/drawingml/chart/chartdrawingfragment.hxx2
-rw-r--r--oox/inc/drawingml/chart/chartspaceconverter.hxx2
-rw-r--r--oox/inc/drawingml/chart/chartspacefragment.hxx2
-rw-r--r--oox/inc/drawingml/chart/converterbase.hxx4
-rw-r--r--oox/inc/drawingml/chart/datasourcecontext.hxx6
-rw-r--r--oox/inc/drawingml/chart/datasourceconverter.hxx4
-rw-r--r--oox/inc/drawingml/chart/plotareacontext.hxx8
-rw-r--r--oox/inc/drawingml/chart/plotareaconverter.hxx8
-rw-r--r--oox/inc/drawingml/chart/seriescontext.hxx32
-rw-r--r--oox/inc/drawingml/chart/seriesconverter.hxx14
-rw-r--r--oox/inc/drawingml/chart/titlecontext.hxx6
-rw-r--r--oox/inc/drawingml/chart/titleconverter.hxx6
-rw-r--r--oox/inc/drawingml/chart/typegroupcontext.hxx18
-rw-r--r--oox/inc/drawingml/chart/typegroupconverter.hxx4
-rw-r--r--oox/inc/drawingml/clrschemecontext.hxx2
-rw-r--r--oox/inc/drawingml/fillpropertiesgroupcontext.hxx10
-rw-r--r--oox/inc/drawingml/linepropertiescontext.hxx2
-rw-r--r--oox/inc/drawingml/shapestylecontext.hxx2
-rw-r--r--oox/inc/drawingml/table/tablebackgroundstylecontext.hxx2
-rw-r--r--oox/inc/drawingml/table/tablecellcontext.hxx2
-rw-r--r--oox/inc/drawingml/table/tablecontext.hxx2
-rw-r--r--oox/inc/drawingml/table/tablepartstylecontext.hxx2
-rw-r--r--oox/inc/drawingml/table/tablerowcontext.hxx2
-rw-r--r--oox/inc/drawingml/table/tablestylecellstylecontext.hxx2
-rw-r--r--oox/inc/drawingml/table/tablestylecontext.hxx2
-rw-r--r--oox/inc/drawingml/table/tablestylelistfragmenthandler.hxx2
-rw-r--r--oox/inc/drawingml/table/tablestyletextstylecontext.hxx2
-rw-r--r--oox/inc/drawingml/textcharacterpropertiescontext.hxx2
-rw-r--r--oox/inc/drawingml/texteffectscontext.hxx2
-rw-r--r--oox/inc/drawingml/textliststylecontext.hxx2
-rw-r--r--oox/inc/drawingml/textparagraphpropertiescontext.hxx2
35 files changed, 92 insertions, 92 deletions
diff --git a/oox/inc/drawingml/ThemeOverrideFragmentHandler.hxx b/oox/inc/drawingml/ThemeOverrideFragmentHandler.hxx
index 5d1fdc9581a8..266a88c2ad6a 100644
--- a/oox/inc/drawingml/ThemeOverrideFragmentHandler.hxx
+++ b/oox/inc/drawingml/ThemeOverrideFragmentHandler.hxx
@@ -24,7 +24,7 @@ public:
::oox::core::XmlFilterBase& rFilter,
const OUString& rFragmentPath,
Theme& rTheme );
- virtual ~ThemeOverrideFragmentHandler();
+ virtual ~ThemeOverrideFragmentHandler() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/chart/axiscontext.hxx b/oox/inc/drawingml/chart/axiscontext.hxx
index 81eb773ecf8e..4544bedf45e3 100644
--- a/oox/inc/drawingml/chart/axiscontext.hxx
+++ b/oox/inc/drawingml/chart/axiscontext.hxx
@@ -35,7 +35,7 @@ class AxisDispUnitsContext : public ContextBase< AxisDispUnitsModel >
{
public:
explicit AxisDispUnitsContext( ::oox::core::ContextHandler2Helper& rParent, AxisDispUnitsModel& rModel );
- virtual ~AxisDispUnitsContext();
+ virtual ~AxisDispUnitsContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -50,7 +50,7 @@ class AxisContextBase : public ContextBase< AxisModel >
{
public:
explicit AxisContextBase( ::oox::core::ContextHandler2Helper& rParent, AxisModel& rModel );
- virtual ~AxisContextBase();
+ virtual ~AxisContextBase() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -62,7 +62,7 @@ class CatAxisContext : public AxisContextBase
{
public:
explicit CatAxisContext( ::oox::core::ContextHandler2Helper& rParent, AxisModel& rModel );
- virtual ~CatAxisContext();
+ virtual ~CatAxisContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -74,7 +74,7 @@ class DateAxisContext : public AxisContextBase
{
public:
explicit DateAxisContext( ::oox::core::ContextHandler2Helper& rParent, AxisModel& rModel );
- virtual ~DateAxisContext();
+ virtual ~DateAxisContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -86,7 +86,7 @@ class SerAxisContext : public AxisContextBase
{
public:
explicit SerAxisContext( ::oox::core::ContextHandler2Helper& rParent, AxisModel& rModel );
- virtual ~SerAxisContext();
+ virtual ~SerAxisContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -98,7 +98,7 @@ class ValAxisContext : public AxisContextBase
{
public:
explicit ValAxisContext( ::oox::core::ContextHandler2Helper& rParent, AxisModel& rModel );
- virtual ~ValAxisContext();
+ virtual ~ValAxisContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
diff --git a/oox/inc/drawingml/chart/axisconverter.hxx b/oox/inc/drawingml/chart/axisconverter.hxx
index 4bf46b77a91c..1d98c41f8e46 100644
--- a/oox/inc/drawingml/chart/axisconverter.hxx
+++ b/oox/inc/drawingml/chart/axisconverter.hxx
@@ -40,7 +40,7 @@ public:
explicit AxisDispUnitsConverter(
const ConverterRoot& rParent,
AxisDispUnitsModel& rModel );
- virtual ~AxisDispUnitsConverter();
+ virtual ~AxisDispUnitsConverter() override;
/** Creates a chart2 axis and inserts it into the passed coordinate system. */
void convertFromModel(
@@ -56,7 +56,7 @@ public:
explicit AxisConverter(
const ConverterRoot& rParent,
AxisModel& rModel );
- virtual ~AxisConverter();
+ virtual ~AxisConverter() override;
/** Creates a chart2 axis and inserts it into the passed coordinate system. */
void convertFromModel(
diff --git a/oox/inc/drawingml/chart/chartcontextbase.hxx b/oox/inc/drawingml/chart/chartcontextbase.hxx
index 9156b8106e45..2639e0823024 100644
--- a/oox/inc/drawingml/chart/chartcontextbase.hxx
+++ b/oox/inc/drawingml/chart/chartcontextbase.hxx
@@ -34,7 +34,7 @@ class ContextBase : public ::oox::core::ContextHandler2
public:
explicit ContextBase( ::oox::core::ContextHandler2Helper& rParent, ModelType& rModel ) :
::oox::core::ContextHandler2( rParent ), mrModel( rModel ) {}
- virtual ~ContextBase() {}
+ virtual ~ContextBase() override {}
protected:
ModelType& mrModel;
@@ -46,7 +46,7 @@ class FragmentBase : public ::oox::core::FragmentHandler2
public:
explicit FragmentBase( ::oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath, ModelType& rModel ) :
::oox::core::FragmentHandler2( rFilter, rFragmentPath, false ), mrModel( rModel ) {}
- virtual ~FragmentBase() {}
+ virtual ~FragmentBase() override {}
protected:
ModelType& mrModel;
@@ -58,7 +58,7 @@ class ShapePrWrapperContext : public ContextBase< Shape >
{
public:
explicit ShapePrWrapperContext( ::oox::core::ContextHandler2Helper& rParent, Shape& rModel );
- virtual ~ShapePrWrapperContext();
+ virtual ~ShapePrWrapperContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -71,7 +71,7 @@ class LayoutContext : public ContextBase< LayoutModel >
{
public:
explicit LayoutContext( ::oox::core::ContextHandler2Helper& rParent, LayoutModel& rModel );
- virtual ~LayoutContext();
+ virtual ~LayoutContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
diff --git a/oox/inc/drawingml/chart/chartdrawingfragment.hxx b/oox/inc/drawingml/chart/chartdrawingfragment.hxx
index 4d3419e622f3..3d7ce5caf59e 100644
--- a/oox/inc/drawingml/chart/chartdrawingfragment.hxx
+++ b/oox/inc/drawingml/chart/chartdrawingfragment.hxx
@@ -85,7 +85,7 @@ public:
const css::awt::Size& rChartSize,
const css::awt::Point& rShapesOffset,
bool bOleSupport );
- virtual ~ChartDrawingFragment();
+ virtual ~ChartDrawingFragment() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
virtual void onCharacters( const OUString& rChars ) override;
diff --git a/oox/inc/drawingml/chart/chartspaceconverter.hxx b/oox/inc/drawingml/chart/chartspaceconverter.hxx
index 7e919c292941..cd034123f150 100644
--- a/oox/inc/drawingml/chart/chartspaceconverter.hxx
+++ b/oox/inc/drawingml/chart/chartspaceconverter.hxx
@@ -37,7 +37,7 @@ class ChartSpaceConverter : public ConverterBase< ChartSpaceModel >
{
public:
explicit ChartSpaceConverter( const ConverterRoot& rParent, ChartSpaceModel& rModel );
- virtual ~ChartSpaceConverter();
+ virtual ~ChartSpaceConverter() override;
/** Converts the contained OOXML chart model to a chart2 document. */
void convertFromModel(
diff --git a/oox/inc/drawingml/chart/chartspacefragment.hxx b/oox/inc/drawingml/chart/chartspacefragment.hxx
index 8a3c66068cf8..fb3586202e9e 100644
--- a/oox/inc/drawingml/chart/chartspacefragment.hxx
+++ b/oox/inc/drawingml/chart/chartspacefragment.hxx
@@ -38,7 +38,7 @@ public:
::oox::core::XmlFilterBase& rFilter,
const OUString& rFragmentPath,
ChartSpaceModel& rModel );
- virtual ~ChartSpaceFragment();
+ virtual ~ChartSpaceFragment() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
diff --git a/oox/inc/drawingml/chart/converterbase.hxx b/oox/inc/drawingml/chart/converterbase.hxx
index 77238914b517..42f763b86405 100644
--- a/oox/inc/drawingml/chart/converterbase.hxx
+++ b/oox/inc/drawingml/chart/converterbase.hxx
@@ -109,7 +109,7 @@ public:
protected:
explicit ConverterBase( const ConverterRoot& rParent, ModelType& rModel ) :
ConverterRoot( rParent ), mrModel( rModel ) {}
- virtual ~ConverterBase() {}
+ virtual ~ConverterBase() override {}
protected:
ModelType& mrModel;
@@ -122,7 +122,7 @@ class LayoutConverter : public ConverterBase< LayoutModel >
{
public:
explicit LayoutConverter( const ConverterRoot& rParent, LayoutModel& rModel );
- virtual ~LayoutConverter();
+ virtual ~LayoutConverter() override;
/** Tries to calculate the absolute position and size from the contained
OOXML layout model. Returns true, if returned rectangle is valid. */
diff --git a/oox/inc/drawingml/chart/datasourcecontext.hxx b/oox/inc/drawingml/chart/datasourcecontext.hxx
index 07c98263a793..5f4b7f7d6877 100644
--- a/oox/inc/drawingml/chart/datasourcecontext.hxx
+++ b/oox/inc/drawingml/chart/datasourcecontext.hxx
@@ -39,7 +39,7 @@ class DoubleSequenceContext : public DataSequenceContextBase
{
public:
explicit DoubleSequenceContext( ::oox::core::ContextHandler2Helper& rParent, DataSequenceModel& rModel );
- virtual ~DoubleSequenceContext();
+ virtual ~DoubleSequenceContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
virtual void onCharacters( const OUString& rChars ) override;
@@ -60,7 +60,7 @@ class StringSequenceContext : public DataSequenceContextBase
{
public:
explicit StringSequenceContext( ::oox::core::ContextHandler2Helper& rParent, DataSequenceModel& rModel );
- virtual ~StringSequenceContext();
+ virtual ~StringSequenceContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
virtual void onCharacters( const OUString& rChars ) override;
@@ -79,7 +79,7 @@ class DataSourceContext : public ContextBase< DataSourceModel >
{
public:
explicit DataSourceContext( ::oox::core::ContextHandler2Helper& rParent, DataSourceModel& rModel );
- virtual ~DataSourceContext();
+ virtual ~DataSourceContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
diff --git a/oox/inc/drawingml/chart/datasourceconverter.hxx b/oox/inc/drawingml/chart/datasourceconverter.hxx
index 7ce02d838ffa..cdaae6574bff 100644
--- a/oox/inc/drawingml/chart/datasourceconverter.hxx
+++ b/oox/inc/drawingml/chart/datasourceconverter.hxx
@@ -37,7 +37,7 @@ class DataSequenceConverter : public ConverterBase< DataSequenceModel >
{
public:
explicit DataSequenceConverter( const ConverterRoot& rParent, DataSequenceModel& rModel );
- virtual ~DataSequenceConverter();
+ virtual ~DataSequenceConverter() override;
/** Creates a data sequence object from the contained formula link. */
css::uno::Reference< css::chart2::data::XDataSequence >
@@ -51,7 +51,7 @@ class DataSourceConverter : public ConverterBase< DataSourceModel >
{
public:
explicit DataSourceConverter( const ConverterRoot& rParent, DataSourceModel& rModel );
- virtual ~DataSourceConverter();
+ virtual ~DataSourceConverter() override;
/** Creates a data sequence object from the contained series data. */
css::uno::Reference< css::chart2::data::XDataSequence >
diff --git a/oox/inc/drawingml/chart/plotareacontext.hxx b/oox/inc/drawingml/chart/plotareacontext.hxx
index 161b0d244cf3..67efde118980 100644
--- a/oox/inc/drawingml/chart/plotareacontext.hxx
+++ b/oox/inc/drawingml/chart/plotareacontext.hxx
@@ -35,7 +35,7 @@ class View3DContext : public ContextBase< View3DModel >
{
public:
explicit View3DContext( ::oox::core::ContextHandler2Helper& rParent, View3DModel& rModel );
- virtual ~View3DContext();
+ virtual ~View3DContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -50,7 +50,7 @@ class WallFloorContext : public ContextBase< WallFloorModel >
{
public:
explicit WallFloorContext( ::oox::core::ContextHandler2Helper& rParent, WallFloorModel& rModel );
- virtual ~WallFloorContext();
+ virtual ~WallFloorContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -64,7 +64,7 @@ class DataTableContext : public ContextBase< DataTableModel >
{
public:
explicit DataTableContext( ::oox::core::ContextHandler2Helper& rParent, DataTableModel& rModel );
- virtual ~DataTableContext();
+ virtual ~DataTableContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -78,7 +78,7 @@ class PlotAreaContext : public ContextBase< PlotAreaModel >
{
public:
explicit PlotAreaContext( ::oox::core::ContextHandler2Helper& rParent, PlotAreaModel& rModel );
- virtual ~PlotAreaContext();
+ virtual ~PlotAreaContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
diff --git a/oox/inc/drawingml/chart/plotareaconverter.hxx b/oox/inc/drawingml/chart/plotareaconverter.hxx
index 143d08a1649a..07061c1cc474 100644
--- a/oox/inc/drawingml/chart/plotareaconverter.hxx
+++ b/oox/inc/drawingml/chart/plotareaconverter.hxx
@@ -38,7 +38,7 @@ class View3DConverter : public ConverterBase< View3DModel >
{
public:
explicit View3DConverter( const ConverterRoot& rParent, View3DModel& rModel );
- virtual ~View3DConverter();
+ virtual ~View3DConverter() override;
/** Converts the OOXML plot area model to a chart2 diagram. */
void convertFromModel(
@@ -53,7 +53,7 @@ class WallFloorConverter : public ConverterBase< WallFloorModel >
{
public:
explicit WallFloorConverter( const ConverterRoot& rParent, WallFloorModel& rModel );
- virtual ~WallFloorConverter();
+ virtual ~WallFloorConverter() override;
/** Converts the OOXML wall/floor model to a chart2 diagram. */
void convertFromModel(
@@ -68,7 +68,7 @@ class DataTableConverter : public ConverterBase< DataTableModel >
{
public:
explicit DataTableConverter( const ConverterRoot& rParent, DataTableModel& rModel );
- virtual ~DataTableConverter();
+ virtual ~DataTableConverter() override;
/** Converts the OOXML data table model to a chart2 diagram. */
void convertFromModel(
@@ -82,7 +82,7 @@ class PlotAreaConverter : public ConverterBase< PlotAreaModel >
{
public:
explicit PlotAreaConverter( const ConverterRoot& rParent, PlotAreaModel& rModel );
- virtual ~PlotAreaConverter();
+ virtual ~PlotAreaConverter() override;
/** Converts the OOXML plot area model to a chart2 diagram. */
void convertFromModel( View3DModel& rView3DModel );
diff --git a/oox/inc/drawingml/chart/seriescontext.hxx b/oox/inc/drawingml/chart/seriescontext.hxx
index c0e6f979e342..a0d38ea8e6be 100644
--- a/oox/inc/drawingml/chart/seriescontext.hxx
+++ b/oox/inc/drawingml/chart/seriescontext.hxx
@@ -35,7 +35,7 @@ class DataLabelContext : public ContextBase< DataLabelModel >
{
public:
explicit DataLabelContext( ::oox::core::ContextHandler2Helper& rParent, DataLabelModel& rModel );
- virtual ~DataLabelContext();
+ virtual ~DataLabelContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
virtual void onCharacters( const OUString& rChars ) override;
@@ -50,7 +50,7 @@ class DataLabelsContext : public ContextBase< DataLabelsModel >
{
public:
explicit DataLabelsContext( ::oox::core::ContextHandler2Helper& rParent, DataLabelsModel& rModel );
- virtual ~DataLabelsContext();
+ virtual ~DataLabelsContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
virtual void onCharacters( const OUString& rChars ) override;
@@ -65,7 +65,7 @@ class PictureOptionsContext : public ContextBase< PictureOptionsModel >
{
public:
explicit PictureOptionsContext( ::oox::core::ContextHandler2Helper& rParent, PictureOptionsModel& rModel );
- virtual ~PictureOptionsContext();
+ virtual ~PictureOptionsContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -79,7 +79,7 @@ class ErrorBarContext : public ContextBase< ErrorBarModel >
{
public:
explicit ErrorBarContext( ::oox::core::ContextHandler2Helper& rParent, ErrorBarModel& rModel );
- virtual ~ErrorBarContext();
+ virtual ~ErrorBarContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -93,7 +93,7 @@ class TrendlineLabelContext : public ContextBase< TrendlineLabelModel >
{
public:
explicit TrendlineLabelContext( ::oox::core::ContextHandler2Helper& rParent, TrendlineLabelModel& rModel );
- virtual ~TrendlineLabelContext();
+ virtual ~TrendlineLabelContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -107,7 +107,7 @@ class TrendlineContext : public ContextBase< TrendlineModel >
{
public:
explicit TrendlineContext( ::oox::core::ContextHandler2Helper& rParent, TrendlineModel& rModel );
- virtual ~TrendlineContext();
+ virtual ~TrendlineContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
virtual void onCharacters( const OUString& rChars ) override;
@@ -122,7 +122,7 @@ class DataPointContext : public ContextBase< DataPointModel >
{
public:
explicit DataPointContext( ::oox::core::ContextHandler2Helper& rParent, DataPointModel& rModel );
- virtual ~DataPointContext();
+ virtual ~DataPointContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -136,7 +136,7 @@ class SeriesContextBase : public ContextBase< SeriesModel >
{
public:
explicit SeriesContextBase( ::oox::core::ContextHandler2Helper& rParent, SeriesModel& rModel );
- virtual ~SeriesContextBase();
+ virtual ~SeriesContextBase() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -148,7 +148,7 @@ class AreaSeriesContext : public SeriesContextBase
{
public:
explicit AreaSeriesContext( ::oox::core::ContextHandler2Helper& rParent, SeriesModel& rModel );
- virtual ~AreaSeriesContext();
+ virtual ~AreaSeriesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -160,7 +160,7 @@ class BarSeriesContext : public SeriesContextBase
{
public:
explicit BarSeriesContext( ::oox::core::ContextHandler2Helper& rParent, SeriesModel& rModel );
- virtual ~BarSeriesContext();
+ virtual ~BarSeriesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -172,7 +172,7 @@ class BubbleSeriesContext : public SeriesContextBase
{
public:
explicit BubbleSeriesContext( ::oox::core::ContextHandler2Helper& rParent, SeriesModel& rModel );
- virtual ~BubbleSeriesContext();
+ virtual ~BubbleSeriesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -185,7 +185,7 @@ class LineSeriesContext : public SeriesContextBase
{
public:
explicit LineSeriesContext( ::oox::core::ContextHandler2Helper& rParent, SeriesModel& rModel );
- virtual ~LineSeriesContext();
+ virtual ~LineSeriesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -198,7 +198,7 @@ class PieSeriesContext : public SeriesContextBase
{
public:
explicit PieSeriesContext( ::oox::core::ContextHandler2Helper& rParent, SeriesModel& rModel );
- virtual ~PieSeriesContext();
+ virtual ~PieSeriesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -210,7 +210,7 @@ class RadarSeriesContext : public SeriesContextBase
{
public:
explicit RadarSeriesContext( ::oox::core::ContextHandler2Helper& rParent, SeriesModel& rModel );
- virtual ~RadarSeriesContext();
+ virtual ~RadarSeriesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -222,7 +222,7 @@ class ScatterSeriesContext : public SeriesContextBase
{
public:
explicit ScatterSeriesContext( ::oox::core::ContextHandler2Helper& rParent, SeriesModel& rModel );
- virtual ~ScatterSeriesContext();
+ virtual ~ScatterSeriesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -234,7 +234,7 @@ class SurfaceSeriesContext : public SeriesContextBase
{
public:
explicit SurfaceSeriesContext( ::oox::core::ContextHandler2Helper& rParent, SeriesModel& rModel );
- virtual ~SurfaceSeriesContext();
+ virtual ~SurfaceSeriesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
diff --git a/oox/inc/drawingml/chart/seriesconverter.hxx b/oox/inc/drawingml/chart/seriesconverter.hxx
index a502137b712f..6ee20c59f147 100644
--- a/oox/inc/drawingml/chart/seriesconverter.hxx
+++ b/oox/inc/drawingml/chart/seriesconverter.hxx
@@ -42,7 +42,7 @@ class DataLabelConverter : public ConverterBase< DataLabelModel >
{
public:
explicit DataLabelConverter( const ConverterRoot& rParent, DataLabelModel& rModel );
- virtual ~DataLabelConverter();
+ virtual ~DataLabelConverter() override;
/** Converts OOXML data label settings for the passed data point. */
void convertFromModel(
@@ -55,7 +55,7 @@ class DataLabelsConverter : public ConverterBase< DataLabelsModel >
{
public:
explicit DataLabelsConverter( const ConverterRoot& rParent, DataLabelsModel& rModel );
- virtual ~DataLabelsConverter();
+ virtual ~DataLabelsConverter() override;
/** Converts OOXML data label settings for the passed data series. */
void convertFromModel(
@@ -68,7 +68,7 @@ class ErrorBarConverter : public ConverterBase< ErrorBarModel >
{
public:
explicit ErrorBarConverter( const ConverterRoot& rParent, ErrorBarModel& rModel );
- virtual ~ErrorBarConverter();
+ virtual ~ErrorBarConverter() override;
/** Converts an OOXML errorbar and inserts it into the passed data series. */
void convertFromModel(
@@ -84,7 +84,7 @@ class TrendlineLabelConverter : public ConverterBase< TrendlineLabelModel >
{
public:
explicit TrendlineLabelConverter( const ConverterRoot& rParent, TrendlineLabelModel& rModel );
- virtual ~TrendlineLabelConverter();
+ virtual ~TrendlineLabelConverter() override;
/** Converts the OOXML trendline label. */
void convertFromModel( PropertySet& rPropSet );
@@ -95,7 +95,7 @@ class TrendlineConverter : public ConverterBase< TrendlineModel >
{
public:
explicit TrendlineConverter( const ConverterRoot& rParent, TrendlineModel& rModel );
- virtual ~TrendlineConverter();
+ virtual ~TrendlineConverter() override;
/** Converts an OOXML trendline and inserts it into the passed data series. */
void convertFromModel(
@@ -107,7 +107,7 @@ class DataPointConverter : public ConverterBase< DataPointModel >
{
public:
explicit DataPointConverter( const ConverterRoot& rParent, DataPointModel& rModel );
- virtual ~DataPointConverter();
+ virtual ~DataPointConverter() override;
/** Converts settings for a data point in the passed series. */
void convertFromModel(
@@ -121,7 +121,7 @@ class SeriesConverter : public ConverterBase< SeriesModel >
{
public:
explicit SeriesConverter( const ConverterRoot& rParent, SeriesModel& rModel );
- virtual ~SeriesConverter();
+ virtual ~SeriesConverter() override;
/** Creates a labeled data sequence object from category data link. */
css::uno::Reference< css::chart2::data::XLabeledDataSequence >
diff --git a/oox/inc/drawingml/chart/titlecontext.hxx b/oox/inc/drawingml/chart/titlecontext.hxx
index eeb8184513e9..2d52720ef7a4 100644
--- a/oox/inc/drawingml/chart/titlecontext.hxx
+++ b/oox/inc/drawingml/chart/titlecontext.hxx
@@ -35,7 +35,7 @@ class TextContext : public ContextBase< TextModel >
{
public:
explicit TextContext( ::oox::core::ContextHandler2Helper& rParent, TextModel& rModel );
- virtual ~TextContext();
+ virtual ~TextContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
virtual void onCharacters( const OUString& rChars ) override;
@@ -50,7 +50,7 @@ class TitleContext : public ContextBase< TitleModel >
{
public:
explicit TitleContext( ::oox::core::ContextHandler2Helper& rParent, TitleModel& rModel );
- virtual ~TitleContext();
+ virtual ~TitleContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -64,7 +64,7 @@ class LegendContext : public ContextBase< LegendModel >
{
public:
explicit LegendContext( ::oox::core::ContextHandler2Helper& rParent, LegendModel& rModel );
- virtual ~LegendContext();
+ virtual ~LegendContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
diff --git a/oox/inc/drawingml/chart/titleconverter.hxx b/oox/inc/drawingml/chart/titleconverter.hxx
index ccbc7f308422..10f2f000d4aa 100644
--- a/oox/inc/drawingml/chart/titleconverter.hxx
+++ b/oox/inc/drawingml/chart/titleconverter.hxx
@@ -42,7 +42,7 @@ class TextConverter : public ConverterBase< TextModel >
{
public:
explicit TextConverter( const ConverterRoot& rParent, TextModel& rModel );
- virtual ~TextConverter();
+ virtual ~TextConverter() override;
/** Creates a data sequence object from the contained text data. */
css::uno::Reference< css::chart2::data::XDataSequence >
@@ -69,7 +69,7 @@ class TitleConverter : public ConverterBase< TitleModel >
{
public:
explicit TitleConverter( const ConverterRoot& rParent, TitleModel& rModel );
- virtual ~TitleConverter();
+ virtual ~TitleConverter() override;
/** Creates a title text object and attaches it at the passed interface. */
void convertFromModel(
@@ -85,7 +85,7 @@ class LegendConverter : public ConverterBase< LegendModel >
{
public:
explicit LegendConverter( const ConverterRoot& rParent, LegendModel& rModel );
- virtual ~LegendConverter();
+ virtual ~LegendConverter() override;
/** Creates a legend object and attaches it at the passed diagram. */
void convertFromModel(
diff --git a/oox/inc/drawingml/chart/typegroupcontext.hxx b/oox/inc/drawingml/chart/typegroupcontext.hxx
index 54260362991b..4c0a999a443f 100644
--- a/oox/inc/drawingml/chart/typegroupcontext.hxx
+++ b/oox/inc/drawingml/chart/typegroupcontext.hxx
@@ -35,7 +35,7 @@ class UpDownBarsContext : public ContextBase< UpDownBarsModel >
{
public:
explicit UpDownBarsContext( ::oox::core::ContextHandler2Helper& rParent, UpDownBarsModel& rModel );
- virtual ~UpDownBarsContext();
+ virtual ~UpDownBarsContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -51,7 +51,7 @@ class AreaTypeGroupContext : public TypeGroupContextBase
{
public:
explicit AreaTypeGroupContext( ::oox::core::ContextHandler2Helper& rParent, TypeGroupModel& rModel );
- virtual ~AreaTypeGroupContext();
+ virtual ~AreaTypeGroupContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -63,7 +63,7 @@ class BarTypeGroupContext : public TypeGroupContextBase
{
public:
explicit BarTypeGroupContext( ::oox::core::ContextHandler2Helper& rParent, TypeGroupModel& rModel );
- virtual ~BarTypeGroupContext();
+ virtual ~BarTypeGroupContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -75,7 +75,7 @@ class BubbleTypeGroupContext : public TypeGroupContextBase
{
public:
explicit BubbleTypeGroupContext( ::oox::core::ContextHandler2Helper& rParent, TypeGroupModel& rModel );
- virtual ~BubbleTypeGroupContext();
+ virtual ~BubbleTypeGroupContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -88,7 +88,7 @@ class LineTypeGroupContext : public TypeGroupContextBase
{
public:
explicit LineTypeGroupContext( ::oox::core::ContextHandler2Helper& rParent, TypeGroupModel& rModel );
- virtual ~LineTypeGroupContext();
+ virtual ~LineTypeGroupContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -101,7 +101,7 @@ class PieTypeGroupContext : public TypeGroupContextBase
{
public:
explicit PieTypeGroupContext( ::oox::core::ContextHandler2Helper& rParent, TypeGroupModel& rModel );
- virtual ~PieTypeGroupContext();
+ virtual ~PieTypeGroupContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -113,7 +113,7 @@ class RadarTypeGroupContext : public TypeGroupContextBase
{
public:
explicit RadarTypeGroupContext( ::oox::core::ContextHandler2Helper& rParent, TypeGroupModel& rModel );
- virtual ~RadarTypeGroupContext();
+ virtual ~RadarTypeGroupContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -125,7 +125,7 @@ class ScatterTypeGroupContext : public TypeGroupContextBase
{
public:
explicit ScatterTypeGroupContext( ::oox::core::ContextHandler2Helper& rParent, TypeGroupModel& rModel );
- virtual ~ScatterTypeGroupContext();
+ virtual ~ScatterTypeGroupContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
@@ -138,7 +138,7 @@ class SurfaceTypeGroupContext : public TypeGroupContextBase
{
public:
explicit SurfaceTypeGroupContext( ::oox::core::ContextHandler2Helper& rParent, TypeGroupModel& rModel );
- virtual ~SurfaceTypeGroupContext();
+ virtual ~SurfaceTypeGroupContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
};
diff --git a/oox/inc/drawingml/chart/typegroupconverter.hxx b/oox/inc/drawingml/chart/typegroupconverter.hxx
index c4fb0543f7ec..22a134ce8951 100644
--- a/oox/inc/drawingml/chart/typegroupconverter.hxx
+++ b/oox/inc/drawingml/chart/typegroupconverter.hxx
@@ -98,7 +98,7 @@ class UpDownBarsConverter : public ConverterBase< UpDownBarsModel >
{
public:
explicit UpDownBarsConverter( const ConverterRoot& rParent, UpDownBarsModel& rModel );
- virtual ~UpDownBarsConverter();
+ virtual ~UpDownBarsConverter() override;
/** Converts the OOXML up/down bars. */
void convertFromModel(
@@ -112,7 +112,7 @@ class TypeGroupConverter : public ConverterBase< TypeGroupModel >
{
public:
explicit TypeGroupConverter( const ConverterRoot& rParent, TypeGroupModel& rModel );
- virtual ~TypeGroupConverter();
+ virtual ~TypeGroupConverter() override;
/** Returns the type info struct that describes this chart type group. */
const TypeGroupInfo& getTypeInfo() const { return maTypeInfo; }
diff --git a/oox/inc/drawingml/clrschemecontext.hxx b/oox/inc/drawingml/clrschemecontext.hxx
index ad9173d16b90..b16f1c25a7f6 100644
--- a/oox/inc/drawingml/clrschemecontext.hxx
+++ b/oox/inc/drawingml/clrschemecontext.hxx
@@ -38,7 +38,7 @@ class clrSchemeColorContext : private Color, public ColorContext
{
public:
clrSchemeColorContext( ::oox::core::ContextHandler2Helper& rParent, ClrScheme& rClrScheme, sal_Int32 nColorToken );
- virtual ~clrSchemeColorContext();
+ virtual ~clrSchemeColorContext() override;
private:
ClrScheme& mrClrScheme;
diff --git a/oox/inc/drawingml/fillpropertiesgroupcontext.hxx b/oox/inc/drawingml/fillpropertiesgroupcontext.hxx
index 59cf7d27fa7d..b93249c14fe8 100644
--- a/oox/inc/drawingml/fillpropertiesgroupcontext.hxx
+++ b/oox/inc/drawingml/fillpropertiesgroupcontext.hxx
@@ -83,7 +83,7 @@ public:
explicit ArtisticEffectContext(
::oox::core::ContextHandler2Helper& rParent,
ArtisticEffectProperties& rEffect );
- virtual ~ArtisticEffectContext();
+ virtual ~ArtisticEffectContext() override;
virtual ::oox::core::ContextHandlerRef
onCreateContext(
@@ -103,7 +103,7 @@ public:
explicit BlipExtensionContext(
::oox::core::ContextHandler2Helper& rParent,
BlipFillProperties& rBlipProps );
- virtual ~BlipExtensionContext();
+ virtual ~BlipExtensionContext() override;
virtual ::oox::core::ContextHandlerRef
onCreateContext(
@@ -124,7 +124,7 @@ public:
::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttribs,
BlipFillProperties& rBlipProps );
- virtual ~DuotoneContext();
+ virtual ~DuotoneContext() override;
virtual ::oox::core::ContextHandlerRef
onCreateContext(
@@ -146,7 +146,7 @@ public:
::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttribs,
BlipFillProperties& rBlipProps );
- virtual ~ColorChangeContext();
+ virtual ~ColorChangeContext() override;
virtual ::oox::core::ContextHandlerRef
onCreateContext(
@@ -233,7 +233,7 @@ public:
explicit SimpleFillPropertiesContext(
::oox::core::ContextHandler2Helper& rParent,
Color& rColor );
- virtual ~SimpleFillPropertiesContext();
+ virtual ~SimpleFillPropertiesContext() override;
protected:
Color& mrColor;
diff --git a/oox/inc/drawingml/linepropertiescontext.hxx b/oox/inc/drawingml/linepropertiescontext.hxx
index c1d03cd9fc61..950a7edf7926 100644
--- a/oox/inc/drawingml/linepropertiescontext.hxx
+++ b/oox/inc/drawingml/linepropertiescontext.hxx
@@ -33,7 +33,7 @@ public:
LinePropertiesContext( ::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttributes,
LineProperties& rLineProperties ) throw();
- virtual ~LinePropertiesContext();
+ virtual ~LinePropertiesContext() override;
virtual ::oox::core::ContextHandlerRef
onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/shapestylecontext.hxx b/oox/inc/drawingml/shapestylecontext.hxx
index 74788abe40eb..693d9bcdbfdc 100644
--- a/oox/inc/drawingml/shapestylecontext.hxx
+++ b/oox/inc/drawingml/shapestylecontext.hxx
@@ -29,7 +29,7 @@ class ShapeStyleContext : public ::oox::core::ContextHandler2
{
public:
ShapeStyleContext( ::oox::core::ContextHandler2Helper& rParent, Shape& rShape );
- virtual ~ShapeStyleContext();
+ virtual ~ShapeStyleContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/table/tablebackgroundstylecontext.hxx b/oox/inc/drawingml/table/tablebackgroundstylecontext.hxx
index 2e4e7abaca4f..dda5376e0b64 100644
--- a/oox/inc/drawingml/table/tablebackgroundstylecontext.hxx
+++ b/oox/inc/drawingml/table/tablebackgroundstylecontext.hxx
@@ -29,7 +29,7 @@ class TableBackgroundStyleContext : public ::oox::core::ContextHandler2
{
public:
TableBackgroundStyleContext( ::oox::core::ContextHandler2Helper& rParent, TableStyle& rTableStyle );
- virtual ~TableBackgroundStyleContext();
+ virtual ~TableBackgroundStyleContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/table/tablecellcontext.hxx b/oox/inc/drawingml/table/tablecellcontext.hxx
index d1c341b4ea29..320c3ffd1805 100644
--- a/oox/inc/drawingml/table/tablecellcontext.hxx
+++ b/oox/inc/drawingml/table/tablecellcontext.hxx
@@ -30,7 +30,7 @@ class TableCellContext : public ::oox::core::ContextHandler2
public:
TableCellContext( ::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttribs, TableCell& rTableCell );
- virtual ~TableCellContext();
+ virtual ~TableCellContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/table/tablecontext.hxx b/oox/inc/drawingml/table/tablecontext.hxx
index ba3c07ca319b..00545a8e8d64 100644
--- a/oox/inc/drawingml/table/tablecontext.hxx
+++ b/oox/inc/drawingml/table/tablecontext.hxx
@@ -30,7 +30,7 @@ class TableContext : public ShapeContext
{
public:
TableContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr pShapePtr );
- virtual ~TableContext();
+ virtual ~TableContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/table/tablepartstylecontext.hxx b/oox/inc/drawingml/table/tablepartstylecontext.hxx
index fde8231880d4..2a734d4d4ae5 100644
--- a/oox/inc/drawingml/table/tablepartstylecontext.hxx
+++ b/oox/inc/drawingml/table/tablepartstylecontext.hxx
@@ -29,7 +29,7 @@ class TablePartStyleContext : public ::oox::core::ContextHandler2
{
public:
TablePartStyleContext( ::oox::core::ContextHandler2Helper& rParent, TableStylePart& rTableStylePart );
- virtual ~TablePartStyleContext();
+ virtual ~TablePartStyleContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/table/tablerowcontext.hxx b/oox/inc/drawingml/table/tablerowcontext.hxx
index 8ee5b35d63a3..129ff78d8b0c 100644
--- a/oox/inc/drawingml/table/tablerowcontext.hxx
+++ b/oox/inc/drawingml/table/tablerowcontext.hxx
@@ -31,7 +31,7 @@ class TableRowContext : public ::oox::core::ContextHandler2
public:
TableRowContext( ::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttribs, TableRow& rTableRow );
- virtual ~TableRowContext();
+ virtual ~TableRowContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/table/tablestylecellstylecontext.hxx b/oox/inc/drawingml/table/tablestylecellstylecontext.hxx
index 772e3bef2c7c..5bce17c37397 100644
--- a/oox/inc/drawingml/table/tablestylecellstylecontext.hxx
+++ b/oox/inc/drawingml/table/tablestylecellstylecontext.hxx
@@ -29,7 +29,7 @@ class TableStyleCellStyleContext : public ::oox::core::ContextHandler2
{
public:
TableStyleCellStyleContext( ::oox::core::ContextHandler2Helper& rParent, TableStylePart& rTableStylePart );
- virtual ~TableStyleCellStyleContext();
+ virtual ~TableStyleCellStyleContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/table/tablestylecontext.hxx b/oox/inc/drawingml/table/tablestylecontext.hxx
index d983d5587687..72f747c04e5f 100644
--- a/oox/inc/drawingml/table/tablestylecontext.hxx
+++ b/oox/inc/drawingml/table/tablestylecontext.hxx
@@ -31,7 +31,7 @@ public:
TableStyleContext( ::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttribs,
TableStyle& rTableStyle );
- virtual ~TableStyleContext();
+ virtual ~TableStyleContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/table/tablestylelistfragmenthandler.hxx b/oox/inc/drawingml/table/tablestylelistfragmenthandler.hxx
index 65d0a90d8747..204d25d62ddb 100644
--- a/oox/inc/drawingml/table/tablestylelistfragmenthandler.hxx
+++ b/oox/inc/drawingml/table/tablestylelistfragmenthandler.hxx
@@ -34,7 +34,7 @@ public:
::oox::core::XmlFilterBase& rFilter,
const OUString& rFragmentPath,
TableStyleList& rTableStyleList );
- virtual ~TableStyleListFragmentHandler();
+ virtual ~TableStyleListFragmentHandler() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/table/tablestyletextstylecontext.hxx b/oox/inc/drawingml/table/tablestyletextstylecontext.hxx
index 7db5f3a45d2c..9bef38329848 100644
--- a/oox/inc/drawingml/table/tablestyletextstylecontext.hxx
+++ b/oox/inc/drawingml/table/tablestyletextstylecontext.hxx
@@ -31,7 +31,7 @@ public:
TableStyleTextStyleContext( ::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttribs,
TableStylePart& rTableStylePart );
- virtual ~TableStyleTextStyleContext();
+ virtual ~TableStyleTextStyleContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/textcharacterpropertiescontext.hxx b/oox/inc/drawingml/textcharacterpropertiescontext.hxx
index d223afd3b5e1..716b4f097a86 100644
--- a/oox/inc/drawingml/textcharacterpropertiescontext.hxx
+++ b/oox/inc/drawingml/textcharacterpropertiescontext.hxx
@@ -32,7 +32,7 @@ public:
TextCharacterPropertiesContext( ::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttribs,
TextCharacterProperties& rTextCharacterProperties );
- virtual ~TextCharacterPropertiesContext();
+ virtual ~TextCharacterPropertiesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/texteffectscontext.hxx b/oox/inc/drawingml/texteffectscontext.hxx
index e2de24b12d57..75d96bae9888 100644
--- a/oox/inc/drawingml/texteffectscontext.hxx
+++ b/oox/inc/drawingml/texteffectscontext.hxx
@@ -26,7 +26,7 @@ public:
TextEffectsContext(oox::core::ContextHandler2Helper& rParent,
sal_Int32 aElementToken,
std::vector<css::beans::PropertyValue>& rTextEffectsProperties);
- virtual ~TextEffectsContext();
+ virtual ~TextEffectsContext() override;
virtual void onStartElement(const oox::AttributeList& rAttribs) override;
virtual void onEndElement() override;
diff --git a/oox/inc/drawingml/textliststylecontext.hxx b/oox/inc/drawingml/textliststylecontext.hxx
index ced68dfb100b..a48161410e81 100644
--- a/oox/inc/drawingml/textliststylecontext.hxx
+++ b/oox/inc/drawingml/textliststylecontext.hxx
@@ -29,7 +29,7 @@ class TextListStyleContext : public ::oox::core::ContextHandler2
{
public:
TextListStyleContext( ::oox::core::ContextHandler2Helper& rParent, TextListStyle& rTextListStyle );
- virtual ~TextListStyleContext();
+ virtual ~TextListStyleContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/inc/drawingml/textparagraphpropertiescontext.hxx b/oox/inc/drawingml/textparagraphpropertiescontext.hxx
index 8f827e8ebda9..ba3fe098db1b 100644
--- a/oox/inc/drawingml/textparagraphpropertiescontext.hxx
+++ b/oox/inc/drawingml/textparagraphpropertiescontext.hxx
@@ -36,7 +36,7 @@ public:
TextParagraphPropertiesContext( ::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttributes,
TextParagraphProperties& rTextParagraphProperties );
- virtual ~TextParagraphPropertiesContext();
+ virtual ~TextParagraphPropertiesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;