summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-11-11 10:44:14 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-11-11 13:08:21 +0000
commitb8b05986e7ba37b90d4636f87bc31703cdff9d67 (patch)
tree24959b47c8f5bb51ff824f82c2d3ccc19c439596 /sw
parent18737001d8d78f365254dca8469f7ab1ab23fa2e (diff)
default dtor is sufficient
Change-Id: Ia32b31489eb67f24987852dbadbcc2d3a81a0312
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/calc.hxx1
-rw-r--r--sw/source/core/bastyp/calc.cxx4
2 files changed, 0 insertions, 5 deletions
diff --git a/sw/inc/calc.hxx b/sw/inc/calc.hxx
index 92b4acfaa6cc..8f54ab3bb385 100644
--- a/sw/inc/calc.hxx
+++ b/sw/inc/calc.hxx
@@ -106,7 +106,6 @@ public:
// always default to a number. otherwise it will become a SbxEMPTY
SwSbxValue( long n = 0 ) : bVoid(false) { PutLong( n ); }
SwSbxValue( const double& rD ) : bVoid(false) { PutDouble( rD ); }
- virtual ~SwSbxValue() override;
bool GetBool() const;
double GetDouble() const;
diff --git a/sw/source/core/bastyp/calc.cxx b/sw/source/core/bastyp/calc.cxx
index c7bdf9fdadc9..3f2d0ba89781 100644
--- a/sw/source/core/bastyp/calc.cxx
+++ b/sw/source/core/bastyp/calc.cxx
@@ -1411,10 +1411,6 @@ SwCalcExp::SwCalcExp(const OUString& rStr, const SwSbxValue& rVal,
{
}
-SwSbxValue::~SwSbxValue()
-{
-}
-
bool SwSbxValue::GetBool() const
{
return SbxSTRING == GetType() ? !GetOUString().isEmpty()