From 25869d8c9bddb13e9b9fc5bff1494f8ca56a410e Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Wed, 20 Mar 2013 12:30:55 -0400 Subject: First cut on implementing SetValueCell in ScDocFunc. Not tested yet. Also, I have yet to implement the undo and redo for this. ScDocFunc::PutCell needs to be eventually eliminated, in order to avoid direct use of cell classes outside the document. Change-Id: Iae7abc048fc67214037fa0a080fdadbadfa074fd --- sc/inc/cell.hxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sc/inc/cell.hxx') diff --git a/sc/inc/cell.hxx b/sc/inc/cell.hxx index fa5cf235ecb0..71aee7377def 100644 --- a/sc/inc/cell.hxx +++ b/sc/inc/cell.hxx @@ -411,6 +411,10 @@ public: ~ScFormulaCell(); + using ScBaseCell::Clone; + + ScFormulaCell* Clone() const; + /** Empty formula cell, or with a preconstructed token array. */ ScFormulaCell( ScDocument*, const ScAddress&, const ScTokenArray* = NULL, const formula::FormulaGrammar::Grammar = formula::FormulaGrammar::GRAM_DEFAULT, -- cgit