summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xihelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/excel/xihelper.cxx')
-rw-r--r--sc/source/filter/excel/xihelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/excel/xihelper.cxx b/sc/source/filter/excel/xihelper.cxx
index b6df6ebcfaf2..d101a9ddf02e 100644
--- a/sc/source/filter/excel/xihelper.cxx
+++ b/sc/source/filter/excel/xihelper.cxx
@@ -708,8 +708,8 @@ void XclImpUrlHelper::DecodeUrl(
{
if( *(pChar + 1) )
{
- xub_StrLen nLen = *++pChar;
- for( xub_StrLen nChar = 0; (nChar < nLen) && *(pChar + 1); ++nChar )
+ sal_Int32 nLen = *++pChar;
+ for( sal_Int32 nChar = 0; (nChar < nLen) && *(pChar + 1); ++nChar )
lclAppendUrlChar( rUrl, *++pChar );
// rUrl.Append( ':' );
}