diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-22 11:31:46 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-22 11:31:46 +0100 |
commit | 29c38bab7a69127c69f17c9a62b35faf68deb843 (patch) | |
tree | 45c387be241349767bbf11c03cc41c32f4f5210b /sc/inc/token.hxx | |
parent | 03487e2fe78aa76032eef42350eba55b419e6d3d (diff) |
Blind fix for MSVC build
Change-Id: Ib5ed5a6bd598df660c3b865782e6a639e2c657ee
Diffstat (limited to 'sc/inc/token.hxx')
-rw-r--r-- | sc/inc/token.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/inc/token.hxx b/sc/inc/token.hxx index ea2b8ae09432..0d54a4b03816 100644 --- a/sc/inc/token.hxx +++ b/sc/inc/token.hxx @@ -276,6 +276,7 @@ protected: public: ScMatrixCellResultToken( const ScConstMatrixRef& pMat, formula::FormulaToken* pUL ); ScMatrixCellResultToken( const ScMatrixCellResultToken& r ); + virtual ~ScMatrixCellResultToken(); virtual double GetDouble() const SAL_OVERRIDE; virtual svl::SharedString GetString() const SAL_OVERRIDE; virtual const ScMatrix* GetMatrix() const SAL_OVERRIDE; @@ -302,6 +303,7 @@ public: ScMatrixFormulaCellToken( SCCOL nC, SCROW nR, const ScConstMatrixRef& pMat, formula::FormulaToken* pUL ); ScMatrixFormulaCellToken( SCCOL nC, SCROW nR ); ScMatrixFormulaCellToken( const ScMatrixFormulaCellToken& r ); + virtual ~ScMatrixFormulaCellToken(); virtual bool operator==( const formula::FormulaToken& rToken ) const SAL_OVERRIDE; virtual FormulaToken* Clone() const SAL_OVERRIDE { return new ScMatrixFormulaCellToken(*this); } |