summaryrefslogtreecommitdiffstats
path: root/sc/source
diff options
context:
space:
mode:
authorRelease Engineers <releng@openoffice.org>2009-03-10 08:23:59 +0000
committerRelease Engineers <releng@openoffice.org>2009-03-10 08:23:59 +0000
commitc33f3d62c43360e72fa2a80e61f6e26bddb97fad (patch)
tree3ae3ca3f266ff19b56d5cc8a6569e2c573c63f41 /sc/source
parent#i10000# fixes from OOO310 (diff)
downloadcore-c33f3d62c43360e72fa2a80e61f6e26bddb97fad.tar.gz
core-c33f3d62c43360e72fa2a80e61f6e26bddb97fad.zip
#i10000# WaE wntmsci12 (nonpro)
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/core/tool/interpr1.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index 4f1344864593..ec4c4c293839 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -2656,7 +2656,7 @@ static ::rtl::OUString lcl_convertIntoHalfWidth( const ::rtl::OUString & rStr )
bFirstASCCall = false;
}
- return aTrans.transliterate( rStr, 0, rStr.getLength(), NULL );
+ return aTrans.transliterate( rStr, 0, USHORT( rStr.getLength() ), NULL );
}
@@ -2671,7 +2671,7 @@ static ::rtl::OUString lcl_convertIntoFullWidth( const ::rtl::OUString & rStr )
bFirstJISCall = false;
}
- return aTrans.transliterate( rStr, 0, rStr.getLength(), NULL );
+ return aTrans.transliterate( rStr, 0, USHORT( rStr.getLength() ), NULL );
}