diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/formula/tokenarray.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/formula/tokenarray.hxx b/include/formula/tokenarray.hxx index 244a7b96b427..c70e6c1db573 100644 --- a/include/formula/tokenarray.hxx +++ b/include/formula/tokenarray.hxx @@ -115,6 +115,10 @@ protected: /// Also used by the compiler. The token MUST had been allocated with new! FormulaToken* Add( FormulaToken* ); + /** Also used by the compiler. The token MUST had been allocated with new! + @param nOffset negative offset of token, 0==last, 1==previous, ... + */ + FormulaToken* ReplaceToken( sal_uInt16 nOffset, FormulaToken* ); inline void SetCombinedBitsRecalcMode( ScRecalcMode nBits ) { nMode |= (nBits & ~RECALCMODE_EMASK); } inline ScRecalcMode GetCombinedBitsRecalcMode() const |