summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbarange.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba/vbarange.cxx')
-rw-r--r--sc/source/ui/vba/vbarange.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index 27de1e8bf5da..def7b63bc360 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -4996,12 +4996,12 @@ ScVbaRange::TextToColumns( const css::uno::Any& Destination, const css::uno::Any
// Parse the value of parameter FieldInfo.
sal_uInt16 nRealCount = 0;
- xub_StrLen* pColumns = NULL;
+ sal_Int32* pColumns = NULL;
sal_uInt8* pFormats = NULL;
if ( sFieldInfo.getLength() > 0 )
{
sal_uInt16 nCount = sFieldInfo.getLength();
- pColumns = new xub_StrLen[nCount];
+ pColumns = new sal_Int32[nCount];
pFormats = new sal_uInt8[nCount];
sal_uInt16 nFormat = 1;
uno::Reference< script::XTypeConverter > xConverter = getTypeConverter( mxContext );
@@ -5012,7 +5012,7 @@ ScVbaRange::TextToColumns( const css::uno::Any& Destination, const css::uno::Any
nFormat = 1;
try
{
- uno::Any aConverted = xConverter->convertTo( sFieldInfo[nIndex][0], getCppuType((xub_StrLen*)0) );
+ uno::Any aConverted = xConverter->convertTo( sFieldInfo[nIndex][0], getCppuType((sal_Int32*)0) );
aConverted >>= pColumns[nRealCount];
aConverted = xConverter->convertTo( sFieldInfo[nIndex][1], getCppuType((sal_uInt16*)0) );
aConverted >>= nFormat;