diff options
author | David Tardon <dtardon@redhat.com> | 2012-07-04 07:59:58 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-07-04 07:59:58 +0200 |
commit | e8bc25ab32b4b562ec4aa0ef648c08d7ee706f6a (patch) | |
tree | 5aee217090f27fe57c6d777ae4c14aa933ddc3a5 /svl | |
parent | 40605c33bc58c668419d07ec5037674bee37911a (diff) |
explicitly convert to int to help the compiler select overloaded func
Change-Id: I8462319d0c5ccea0bc4d5327c94660e2e683e268
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/numbers/zforlist.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx index 368a0226bb28..252ff7b46bba 100644 --- a/svl/source/numbers/zforlist.cxx +++ b/svl/source/numbers/zforlist.cxx @@ -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 ) |