summaryrefslogtreecommitdiffstats
path: root/chart2/source/view/axes/VCartesianCoordinateSystem.hxx
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-04-24 18:59:09 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-04-24 21:27:04 +0000
commit59dc694c9f858f0c892818ba6370665b352de6a8 (patch)
treed1a0e88b9fbbcdb35a218b39f93808c531522ccd /chart2/source/view/axes/VCartesianCoordinateSystem.hxx
parentremove comment about old compiler issue (diff)
downloadcore-59dc694c9f858f0c892818ba6370665b352de6a8.tar.gz
core-59dc694c9f858f0c892818ba6370665b352de6a8.zip
C++11: disable ctors instead of not implementing them (chart2)
replace the old declare and don't implement pattern with C++11 delete keyword Change-Id: I10b14cece4ecaddc5f96ee098b5fa36a8782a0fc Reviewed-on: https://gerrit.libreoffice.org/24340 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'chart2/source/view/axes/VCartesianCoordinateSystem.hxx')
-rw-r--r--chart2/source/view/axes/VCartesianCoordinateSystem.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/chart2/source/view/axes/VCartesianCoordinateSystem.hxx b/chart2/source/view/axes/VCartesianCoordinateSystem.hxx
index 85819babdd39..d258b6182673 100644
--- a/chart2/source/view/axes/VCartesianCoordinateSystem.hxx
+++ b/chart2/source/view/axes/VCartesianCoordinateSystem.hxx
@@ -29,6 +29,7 @@ namespace chart
class VCartesianCoordinateSystem : public VCoordinateSystem
{
public:
+ VCartesianCoordinateSystem() = delete;
explicit VCartesianCoordinateSystem( const css::uno::Reference< css::chart2::XCoordinateSystem >& xCooSys );
virtual ~VCartesianCoordinateSystem();
@@ -41,9 +42,6 @@ public:
virtual void updateScalesAndIncrementsOnAxes() override;
virtual void createGridShapes() override;
-
-private:
- VCartesianCoordinateSystem();
};
} //namespace chart