mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-2119 fix compiler error
X-SVN-Rev: 11553
This commit is contained in:
parent
772debe207
commit
d0213320b9
1 changed files with 1 additions and 2 deletions
|
@ -169,8 +169,7 @@ DecimalFormatSymbols::initialize(const Locale& loc, UErrorCode& status,
|
|||
&isChoiceFormat, &len, &ec);
|
||||
if (U_SUCCESS(ec)) {
|
||||
fSymbols[kIntlCurrencySymbol] = curriso;
|
||||
fSymbols[kCurrencySymbol] = isChoiceFormat ? curriso
|
||||
: UnicodeString(currname, len);
|
||||
fSymbols[kCurrencySymbol] = UnicodeString(isChoiceFormat? curriso: currname);
|
||||
} else {
|
||||
fSymbols[kCurrencySymbol] = (UChar)0xa4; // 'OX' currency symbol
|
||||
(fSymbols[kIntlCurrencySymbol] = (UChar)0x58).append((UChar)0x58).append((UChar)0x58); // "XXX"
|
||||
|
|
Loading…
Add table
Reference in a new issue