diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/formula/FormulaCompiler.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/formula/FormulaCompiler.hxx b/include/formula/FormulaCompiler.hxx index 28bf5f928075..0328e39f4048 100644 --- a/include/formula/FormulaCompiler.hxx +++ b/include/formula/FormulaCompiler.hxx @@ -245,6 +245,8 @@ public: void CreateStringFromTokenArray( String& rFormula ); void CreateStringFromTokenArray( OUStringBuffer& rBuffer ); + FormulaToken* CreateStringFromToken( OUString& rFormula, FormulaToken* pToken, + bool bAllowArrAdvance = false ); FormulaToken* CreateStringFromToken( String& rFormula, FormulaToken* pToken, bool bAllowArrAdvance = false ); FormulaToken* CreateStringFromToken( OUStringBuffer& rBuffer, FormulaToken* pToken, @@ -306,7 +308,7 @@ protected: bool MergeRangeReference( FormulaToken * * const pCode1, FormulaToken * const * const pCode2 ); String aCorrectedFormula; // autocorrected Formula - String aCorrectedSymbol; // autocorrected Symbol + OUString aCorrectedSymbol; // autocorrected Symbol OpCodeMapPtr mxSymbols; // which symbols are used |