Use contstructor instead of assignment, fixes unittest in sc.
This commit is contained in:
parent
096b74e272
commit
ddbef3da19
1 changed files with 1 additions and 1 deletions
|
@ -3461,7 +3461,7 @@ const NfCurrencyEntry* SvNumberFormatter::GetCurrencyEntry( BOOL & bFoundBank,
|
|||
void SvNumberFormatter::GetCompatibilityCurrency( String& rSymbol, String& rAbbrev ) const
|
||||
{
|
||||
::com::sun::star::uno::Sequence< ::com::sun::star::i18n::Currency2 >
|
||||
xCurrencies = xLocaleData->getAllCurrencies();
|
||||
xCurrencies( xLocaleData->getAllCurrencies() );
|
||||
sal_Int32 nCurrencies = xCurrencies.getLength();
|
||||
sal_Int32 j;
|
||||
for ( j=0; j < nCurrencies; ++j )
|
||||
|
|
Loading…
Reference in a new issue