diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-11 10:43:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-11 13:08:21 +0000 |
commit | 18737001d8d78f365254dca8469f7ab1ab23fa2e (patch) | |
tree | d4a777c316e76739f9f1d49ac9d25a9d673bf0f1 /sw/inc/calc.hxx | |
parent | fdfaf4b1e2c9b862a16e638aa7916f1b9d4316a4 (diff) |
default copy ctor is sufficient
Change-Id: I908848590add00d96001e1fdaafedc85ae3d6765
Diffstat (limited to 'sw/inc/calc.hxx')
-rw-r--r-- | sw/inc/calc.hxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sw/inc/calc.hxx b/sw/inc/calc.hxx index cbcd41864959..92b4acfaa6cc 100644 --- a/sw/inc/calc.hxx +++ b/sw/inc/calc.hxx @@ -106,11 +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 ); } - SwSbxValue( const SwSbxValue& rVal ) : - SvRefBase( rVal ), - SbxValue( rVal ), - bVoid(rVal.bVoid) - {} virtual ~SwSbxValue() override; bool GetBool() const; |