summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-29 08:47:03 +0200
committerNoel Grandin <noel@peralex.com>2013-11-06 08:51:23 +0200
commitfa109ceba9796eddef82a71bc454e0fe393c81ce (patch)
treedc965ea5c59f87ab4689dc476e482cd6ad56a7d5 /vcl
parentconvert xub_StrLen to sal_Int32 (diff)
downloadcore-fa109ceba9796eddef82a71bc454e0fe393c81ce.tar.gz
core-fa109ceba9796eddef82a71bc454e0fe393c81ce.zip
convert xub_StrLen to sal_Int32
convert various module-local functions Change-Id: I89f3eb40b107e2617958e474ffe86bd73e01cf33
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/control/field2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/control/field2.cxx b/vcl/source/control/field2.cxx
index 162dfff25560..f328d0ac504c 100644
--- a/vcl/source/control/field2.cxx
+++ b/vcl/source/control/field2.cxx
@@ -433,7 +433,7 @@ static void ImplPatternProcessStrictModify( Edit* pEdit,
// -----------------------------------------------------------------------
-static xub_StrLen ImplPatternLeftPos(const OString& rEditMask, xub_StrLen nCursorPos)
+static xub_StrLen ImplPatternLeftPos(const OString& rEditMask, sal_Int32 nCursorPos)
{
// search non-literal predecessor
xub_StrLen nNewPos = nCursorPos;
@@ -2224,7 +2224,7 @@ static bool ImplIsValidTimePortion( sal_Bool _bSkipInvalidCharacters, const OUSt
// -----------------------------------------------------------------------
-static bool ImplCutTimePortion( OUStringBuffer& _rStr, xub_StrLen _nSepPos, sal_Bool _bSkipInvalidCharacters, short* _pPortion )
+static bool ImplCutTimePortion( OUStringBuffer& _rStr, sal_Int32 _nSepPos, sal_Bool _bSkipInvalidCharacters, short* _pPortion )
{
OUString sPortion(_rStr.getStr(), _nSepPos );
_rStr = _nSepPos < _rStr.getLength()