diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-12 16:21:34 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-17 08:06:13 +0200 |
commit | 12d44973d96f5cad4b99386c8a281f8427d304e4 (patch) | |
tree | d7e811bd689256ff57c90401779e1b045fe38de1 /include | |
parent | e42e0efe504b95b3b3127b437cdf40621d1dafd8 (diff) |
convert aCorrectedSymbol in formula::FormulaCompiler from String to OUString
Change-Id: I426b305fb8befffe0452e280d2097b6560843eef
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 |