diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-11 13:18:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-17 08:04:40 +0200 |
commit | f32da852f535bdaa04617da4ec56a923b530c344 (patch) | |
tree | 0571c436e864e2be5ab5b8ad10df9aa257bf6607 /include/formula | |
parent | 805738b0ee3504e34a0960fe82f092fb319f9fc9 (diff) |
convert include/formula/formulahelper.hxx from String to OUString
Change-Id: I4ab7595cecede03b4ad2a4b9dbe373e67c2912f4
Diffstat (limited to 'include/formula')
-rw-r--r-- | include/formula/formulahelper.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/formula/formulahelper.hxx b/include/formula/formulahelper.hxx index 27c9b6683964..c717dd4de34d 100644 --- a/include/formula/formulahelper.hxx +++ b/include/formula/formulahelper.hxx @@ -46,27 +46,27 @@ namespace formula inline const CharClass* GetCharClass() const { return m_pCharClass; } - sal_Bool GetNextFunc( const String& rFormula, + sal_Bool GetNextFunc( const OUString& rFormula, sal_Bool bBack, xub_StrLen& rFStart, // Ein- und Ausgabe xub_StrLen* pFEnd = NULL, const IFunctionDescription** ppFDesc = NULL, ::std::vector< OUString>* pArgs = NULL ) const; - xub_StrLen GetFunctionStart( const String& rFormula, xub_StrLen nStart, - sal_Bool bBack, String* pFuncName = NULL ) const; + xub_StrLen GetFunctionStart( const OUString& rFormula, xub_StrLen nStart, + sal_Bool bBack, OUString* pFuncName = NULL ) const; - xub_StrLen GetFunctionEnd ( const String& rFormula, xub_StrLen nStart ) const; + xub_StrLen GetFunctionEnd ( const OUString& rFormula, xub_StrLen nStart ) const; - xub_StrLen GetArgStart ( const String& rFormula, xub_StrLen nStart, + xub_StrLen GetArgStart ( const OUString& rFormula, xub_StrLen nStart, sal_uInt16 nArg ) const; void GetArgStrings ( ::std::vector< OUString >& _rArgs, - const String& rFormula, + const OUString& rFormula, xub_StrLen nFuncPos, sal_uInt16 nArgs ) const; - void FillArgStrings ( const String& rFormula, + void FillArgStrings ( const OUString& rFormula, xub_StrLen nFuncPos, sal_uInt16 nArgs, ::std::vector< OUString >& _rArgs ) const; |