summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-12-30 06:45:14 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-01-29 08:09:28 +0100
commit7ccbc4f5ec6e17b8e230806ba0279f8a56829a70 (patch)
treec41bb401e486ab2c164119ab5c045cdab59252de /chart2
parent91e1d305a14a17e7d728b3b5055c65a67582715d (diff)
add SAL_FINAL to assert that there are no subclasses
we can now remove all the virtual keywords Change-Id: I494b25d7a1ba7f30d319025c92040d0f882d6c63
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/view/inc/VDataSeries.hxx2
-rw-r--r--chart2/source/view/inc/VSeriesPlotter.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/view/inc/VDataSeries.hxx b/chart2/source/view/inc/VDataSeries.hxx
index bbd903c860f1..37d512fd1da3 100644
--- a/chart2/source/view/inc/VDataSeries.hxx
+++ b/chart2/source/view/inc/VDataSeries.hxx
@@ -57,7 +57,7 @@ public:
mutable ::com::sun::star::uno::Sequence< double > Doubles;
};
-class VDataSeries : boost::noncopyable
+class VDataSeries SAL_FINAL : boost::noncopyable
{
public:
VDataSeries( const ::com::sun::star::uno::Reference<
diff --git a/chart2/source/view/inc/VSeriesPlotter.hxx b/chart2/source/view/inc/VSeriesPlotter.hxx
index 97cc4f8f68e0..9a5d55a17aed 100644
--- a/chart2/source/view/inc/VSeriesPlotter.hxx
+++ b/chart2/source/view/inc/VSeriesPlotter.hxx
@@ -73,7 +73,7 @@ private:
* A list of series that have the same CoordinateSystem. They are used to be
* plotted maybe in a stacked manner by a plotter.
*/
-class VDataSeriesGroup
+class VDataSeriesGroup SAL_FINAL
{
public:
VDataSeriesGroup();