mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-760 Do the correct padding between a number and its sign
X-SVN-Rev: 3687
This commit is contained in:
parent
d6022918c7
commit
5c2690878a
1 changed files with 1 additions and 1 deletions
|
@ -922,7 +922,7 @@ DecimalFormat::subformat(UnicodeString& result,
|
|||
|
||||
result += (digits.fIsPositive ? fPositiveSuffix : fNegativeSuffix);
|
||||
|
||||
addPadding(result, TRUE, digits.fIsPositive);
|
||||
addPadding(result, TRUE, !digits.fIsPositive);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue