diff options
Diffstat (limited to 'sw')
-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; |