summaryrefslogtreecommitdiff
path: root/svx/source/engine3d
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-25 10:22:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-25 11:55:19 +0000
commitd5cd223c48667770eeec3ef18c8b1b29d8ba564c (patch)
treea4b1788e7ffcd5eaddbc2519a9ad76bb39b7c2cf /svx/source/engine3d
parent3e6042c2ce4613f5f200739b5842d4e38e8ec54a (diff)
loplugin: unnecessary destructor svx
Change-Id: I7feed30eea4f7367943fa2d6e0d75be5ca209068 Reviewed-on: https://gerrit.libreoffice.org/33516 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/engine3d')
-rw-r--r--svx/source/engine3d/scene3d.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/svx/source/engine3d/scene3d.cxx b/svx/source/engine3d/scene3d.cxx
index da2e7fb0a3d4..dbf1e7b5f8fd 100644
--- a/svx/source/engine3d/scene3d.cxx
+++ b/svx/source/engine3d/scene3d.cxx
@@ -59,7 +59,6 @@ class ImpRemap3DDepth
public:
ImpRemap3DDepth(sal_uInt32 nOrdNum, double fMinimalDepth);
explicit ImpRemap3DDepth(sal_uInt32 nOrdNum);
- ~ImpRemap3DDepth();
// for ::std::sort
bool operator<(const ImpRemap3DDepth& rComp) const;
@@ -82,10 +81,6 @@ ImpRemap3DDepth::ImpRemap3DDepth(sal_uInt32 nOrdNum)
{
}
-ImpRemap3DDepth::~ImpRemap3DDepth()
-{
-}
-
bool ImpRemap3DDepth::operator<(const ImpRemap3DDepth& rComp) const
{
if(IsScene())
@@ -111,7 +106,6 @@ class Imp3DDepthRemapper
public:
explicit Imp3DDepthRemapper(E3dScene& rScene);
- ~Imp3DDepthRemapper();
sal_uInt32 RemapOrdNum(sal_uInt32 nOrdNum) const;
};
@@ -149,10 +143,6 @@ Imp3DDepthRemapper::Imp3DDepthRemapper(E3dScene& rScene)
::std::sort(maVector.begin(), maVector.end());
}
-Imp3DDepthRemapper::~Imp3DDepthRemapper()
-{
-}
-
sal_uInt32 Imp3DDepthRemapper::RemapOrdNum(sal_uInt32 nOrdNum) const
{
if(nOrdNum < maVector.size())