summaryrefslogtreecommitdiff
path: root/chart2/source/view/charttypes
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/view/charttypes')
-rw-r--r--chart2/source/view/charttypes/AreaChart.hxx2
-rw-r--r--chart2/source/view/charttypes/BarChart.hxx2
-rw-r--r--chart2/source/view/charttypes/BarPositionHelper.hxx2
-rw-r--r--chart2/source/view/charttypes/BubbleChart.hxx2
-rw-r--r--chart2/source/view/charttypes/CandleStickChart.hxx2
-rw-r--r--chart2/source/view/charttypes/NetChart.hxx2
-rw-r--r--chart2/source/view/charttypes/PieChart.cxx2
-rw-r--r--chart2/source/view/charttypes/PieChart.hxx2
8 files changed, 8 insertions, 8 deletions
diff --git a/chart2/source/view/charttypes/AreaChart.hxx b/chart2/source/view/charttypes/AreaChart.hxx
index d355287de4d8..b4f00ef82483 100644
--- a/chart2/source/view/charttypes/AreaChart.hxx
+++ b/chart2/source/view/charttypes/AreaChart.hxx
@@ -36,7 +36,7 @@ public:
, sal_Int32 nDimensionCount
, bool bCategoryXAxis, bool bNoArea=false
);
- virtual ~AreaChart();
+ virtual ~AreaChart() override;
virtual void createShapes() override;
virtual void addSeries( VDataSeries* pSeries, sal_Int32 zSlot = -1, sal_Int32 xSlot = -1,sal_Int32 ySlot = -1 ) override;
diff --git a/chart2/source/view/charttypes/BarChart.hxx b/chart2/source/view/charttypes/BarChart.hxx
index 17632f5c4832..706e257d91a8 100644
--- a/chart2/source/view/charttypes/BarChart.hxx
+++ b/chart2/source/view/charttypes/BarChart.hxx
@@ -34,7 +34,7 @@ public:
BarChart( const css::uno::Reference< css::chart2::XChartType >& xChartTypeModel
, sal_Int32 nDimensionCount );
- virtual ~BarChart();
+ virtual ~BarChart() override;
virtual void createShapes() override;
virtual void addSeries( VDataSeries* pSeries, sal_Int32 zSlot = -1, sal_Int32 xSlot = -1,sal_Int32 ySlot = -1 ) override;
diff --git a/chart2/source/view/charttypes/BarPositionHelper.hxx b/chart2/source/view/charttypes/BarPositionHelper.hxx
index c34d67207382..444edc7c8bf5 100644
--- a/chart2/source/view/charttypes/BarPositionHelper.hxx
+++ b/chart2/source/view/charttypes/BarPositionHelper.hxx
@@ -34,7 +34,7 @@ class BarPositionHelper : public CategoryPositionHelper, public PlottingPosition
public:
explicit BarPositionHelper( bool bSwapXAndY=true );
BarPositionHelper( const BarPositionHelper& rSource );
- virtual ~BarPositionHelper();
+ virtual ~BarPositionHelper() override;
virtual PlottingPositionHelper* clone() const override;
diff --git a/chart2/source/view/charttypes/BubbleChart.hxx b/chart2/source/view/charttypes/BubbleChart.hxx
index 7b3a9206ef8a..ab24ac69cce3 100644
--- a/chart2/source/view/charttypes/BubbleChart.hxx
+++ b/chart2/source/view/charttypes/BubbleChart.hxx
@@ -33,7 +33,7 @@ public:
BubbleChart( const css::uno::Reference< css::chart2::XChartType >& xChartTypeModel
, sal_Int32 nDimensionCount );
- virtual ~BubbleChart();
+ virtual ~BubbleChart() override;
virtual void createShapes() override;
diff --git a/chart2/source/view/charttypes/CandleStickChart.hxx b/chart2/source/view/charttypes/CandleStickChart.hxx
index 38e1dacd57b9..3142e1bdd47e 100644
--- a/chart2/source/view/charttypes/CandleStickChart.hxx
+++ b/chart2/source/view/charttypes/CandleStickChart.hxx
@@ -34,7 +34,7 @@ public:
CandleStickChart( const css::uno::Reference< css::chart2::XChartType >& xChartTypeModel
, sal_Int32 nDimensionCount );
- virtual ~CandleStickChart();
+ virtual ~CandleStickChart() override;
virtual void createShapes() override;
virtual void addSeries( VDataSeries* pSeries, sal_Int32 zSlot = -1, sal_Int32 xSlot = -1,sal_Int32 ySlot = -1 ) override;
diff --git a/chart2/source/view/charttypes/NetChart.hxx b/chart2/source/view/charttypes/NetChart.hxx
index 381678de3be7..c0b22c3ee439 100644
--- a/chart2/source/view/charttypes/NetChart.hxx
+++ b/chart2/source/view/charttypes/NetChart.hxx
@@ -36,7 +36,7 @@ public:
, bool bNoArea
, PlottingPositionHelper* pPlottingPositionHelper //takes ownership
);
- virtual ~NetChart();
+ virtual ~NetChart() override;
virtual void createShapes() override;
virtual void addSeries( VDataSeries* pSeries, sal_Int32 zSlot = -1, sal_Int32 xSlot = -1,sal_Int32 ySlot = -1 ) override;
diff --git a/chart2/source/view/charttypes/PieChart.cxx b/chart2/source/view/charttypes/PieChart.cxx
index 9407995715f6..d2df00070f7d 100644
--- a/chart2/source/view/charttypes/PieChart.cxx
+++ b/chart2/source/view/charttypes/PieChart.cxx
@@ -98,7 +98,7 @@ class PiePositionHelper : public PolarPlottingPositionHelper
{
public:
PiePositionHelper( NormalAxis eNormalAxis, double fAngleDegreeOffset );
- virtual ~PiePositionHelper();
+ virtual ~PiePositionHelper() override;
bool getInnerAndOuterRadius( double fCategoryX, double& fLogicInnerRadius, double& fLogicOuterRadius, bool bUseRings, double fMaxOffset ) const;
diff --git a/chart2/source/view/charttypes/PieChart.hxx b/chart2/source/view/charttypes/PieChart.hxx
index 2b39e0869f95..7e5f0243dae3 100644
--- a/chart2/source/view/charttypes/PieChart.hxx
+++ b/chart2/source/view/charttypes/PieChart.hxx
@@ -37,7 +37,7 @@ public:
PieChart( const css::uno::Reference< css::chart2::XChartType >& xChartTypeModel
, sal_Int32 nDimensionCount, bool bExcludingPositioning );
- virtual ~PieChart();
+ virtual ~PieChart() override;
/** This method creates all shapes needed for representing the pie chart.
*/