diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-20 12:30:55 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-22 21:49:16 -0400 |
commit | 25869d8c9bddb13e9b9fc5bff1494f8ca56a410e (patch) | |
tree | d55de9a78fc397efe9950099ab01ad2f13b2e4fd /sc/inc/cell.hxx | |
parent | 611cb65c2a5d8d99b1ce0b3d9d0fbde95d877f72 (diff) |
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
Diffstat (limited to 'sc/inc/cell.hxx')
-rw-r--r-- | sc/inc/cell.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
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, |