diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-20 14:43:53 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-22 21:49:17 -0400 |
commit | 76c0e26b2d2906ca2199e4294d7433533c78f8e3 (patch) | |
tree | 14464fd71fca02fe52facc61ad6b8c8878acc103 /sc/inc/table.hxx | |
parent | 8aac68741b17a1d161137b12c78d47c8b3e91c68 (diff) |
Let's use ScTokenArray instead of ScFormulaCell.
Because we may move away from ScFormulaCell too.
Change-Id: Iafafe3c864efa73330fb8ecbb713caa903e23db5
Diffstat (limited to 'sc/inc/table.hxx')
-rw-r--r-- | sc/inc/table.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index b87ecfe39e7a..84b5e0c285b8 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -324,7 +324,8 @@ public: } double GetValue( SCCOL nCol, SCROW nRow ) const; const EditTextObject* GetEditText( SCCOL nCol, SCROW nRow ) const; - void GetFormula( SCCOL nCol, SCROW nRow, rtl::OUString& rFormula ); + void GetFormula( SCCOL nCol, SCROW nRow, rtl::OUString& rFormula ) const; + const ScTokenArray* GetFormula( SCCOL nCol, SCROW nRow ) const; CellType GetCellType( const ScAddress& rPos ) const { |