Kaydet (Commit) e8bc25ab authored tarafından David Tardon's avatar David Tardon

explicitly convert to int to help the compiler select overloaded func

Change-Id: I8462319d0c5ccea0bc4d5327c94660e2e683e268
üst 40605c33
......@@ -1954,7 +1954,7 @@ sal_Int32 SvNumberFormatter::ImpGetFormatCodeIndex(
|| nTabOff == NF_CURRENCY_1000DEC2_CCC))
{ // currency entries with decimals might not exist, e.g. Italian Lira
rtl::OUString aMsg( "SvNumberFormatter::ImpGetFormatCodeIndex: not found: " );
aMsg += rtl::OUString::valueOf( nTabOff );
aMsg += rtl::OUString::valueOf( sal_Int32( nTabOff ) );
LocaleDataWrapper::outputCheckMessage( xLocaleData->appendLocaleInfo(aMsg));
}
if ( nLen )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment