From cc63555fd02217e3b68caccfa5c8a0171aca149c Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sun, 18 Nov 2012 14:01:16 -0600 Subject: PutEntry familly of functions use consistent pairing OUString/sal_Int32 Change-Id: I23ae9d3e8bf71ef9ece75ea013d18c36ab2e69d4 --- basic/source/runtime/runtime.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basic/source/runtime') diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx index 3c2c661cc9fc..482526382a50 100644 --- a/basic/source/runtime/runtime.cxx +++ b/basic/source/runtime/runtime.cxx @@ -373,7 +373,7 @@ void SbiInstance::PrepareNumberFormatter( SvNumberFormatter*& rpNumberFormatter, rpNumberFormatter = new SvNumberFormatter( xFactory, eLangType ); - sal_uInt16 nCheckPos = 0; short nType; + sal_Int32 nCheckPos = 0; short nType; rnStdTimeIdx = rpNumberFormatter->GetStandardFormat( NUMBERFORMAT_TIME, eLangType ); // the formatter's standard templates have only got a two-digit date @@ -393,7 +393,7 @@ void SbiInstance::PrepareNumberFormatter( SvNumberFormatter*& rpNumberFormatter, default: aDateStr = "MM.TT.JJJJ"; break; } rpNumberFormatter->PutandConvertEntry( aDateStr, nCheckPos, nType, - rnStdDateIdx, LANGUAGE_GERMAN, eLangType ); + rnStdDateIdx, LANGUAGE_GERMAN, eLangType ); nCheckPos = 0; OUString aStrHHMMSS(" HH:MM:SS"); aDateStr += aStrHHMMSS; -- cgit