summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-29 16:51:31 +0200
committerNoel Grandin <noel@peralex.com>2013-12-03 11:34:48 +0200
commitb882c046ee1268438f36f80038c7a8240053e995 (patch)
treea8f2a83ac642033b0fa86a79c23784b3e9f4af60 /include
parentd9b4c8ea811da36f8e0f38b481700f5a0406790d (diff)
convert FormulaHelper from xub_StrLen to sal_Int32
Change-Id: Ib866c39b2bb5a3cf81b899dc38ea548e3762fc9e
Diffstat (limited to 'include')
-rw-r--r--include/formula/formulahelper.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/formula/formulahelper.hxx b/include/formula/formulahelper.hxx
index becaa07f20a5..84dbcfdd9000 100644
--- a/include/formula/formulahelper.hxx
+++ b/include/formula/formulahelper.hxx
@@ -53,21 +53,21 @@ namespace formula
const IFunctionDescription** ppFDesc = NULL,
::std::vector< OUString>* pArgs = NULL ) const;
- xub_StrLen GetFunctionStart( const OUString& rFormula, xub_StrLen nStart,
+ sal_Int32 GetFunctionStart( const OUString& rFormula, sal_Int32 nStart,
sal_Bool bBack, OUString* pFuncName = NULL ) const;
- xub_StrLen GetFunctionEnd ( const OUString& rFormula, xub_StrLen nStart ) const;
+ sal_Int32 GetFunctionEnd ( const OUString& rFormula, sal_Int32 nStart ) const;
- xub_StrLen GetArgStart ( const OUString& rFormula, xub_StrLen nStart,
+ sal_Int32 GetArgStart ( const OUString& rFormula, sal_Int32 nStart,
sal_uInt16 nArg ) const;
void GetArgStrings ( ::std::vector< OUString >& _rArgs,
- const OUString& rFormula,
- xub_StrLen nFuncPos,
+ const OUString& rFormula,
+ sal_Int32 nFuncPos,
sal_uInt16 nArgs ) const;
void FillArgStrings ( const OUString& rFormula,
- xub_StrLen nFuncPos,
+ sal_Int32 nFuncPos,
sal_uInt16 nArgs,
::std::vector< OUString >& _rArgs ) const;
};