diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-28 15:41:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-05 15:15:30 +0200 |
commit | a6dc113734385cbf37db7ff1804f5276530f78f7 (patch) | |
tree | 91c47dca48541fa297d7a525ab0457302f7a74ed /sc/source/ui/optdlg | |
parent | bb60c5a877057918b59de08207e83aa284d281cc (diff) |
convert xub_StrLen to sal_Int32
Convert code like:
xub_StrLen nLen = aStr.getLength();
into
sal_Int32 nLen = aStr.getLength();
Change-Id: Ib0af6b747068257478918fd1cc93e4925f32ac47
Diffstat (limited to 'sc/source/ui/optdlg')
-rw-r--r-- | sc/source/ui/optdlg/tpusrlst.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/optdlg/tpusrlst.cxx b/sc/source/ui/optdlg/tpusrlst.cxx index cf16ad40e2e7..2b986ce09c9d 100644 --- a/sc/source/ui/optdlg/tpusrlst.cxx +++ b/sc/source/ui/optdlg/tpusrlst.cxx @@ -324,12 +324,12 @@ void ScTpUserLists::MakeListStr( OUString& rListStr ) } aStr = comphelper::string::strip(aStr, cDelimiter); - xub_StrLen nLen = aStr.getLength(); + sal_Int32 nLen = aStr.getLength(); rListStr = ""; // Alle Doppelten cDelimiter entfernen: - xub_StrLen c = 0; + sal_Int32 c = 0; while ( c < nLen ) { rListStr += OUString(aStr[c]); |