Merge pull request #5388

1cf23f6 Update the intent on SI-style separators. (21E14)
This commit is contained in:
Wladimir J. van der Laan 2014-12-01 10:17:47 +01:00
commit b248a38aa5
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 2 additions and 4 deletions

View File

@ -106,10 +106,8 @@ QString BitcoinUnits::format(int unit, const CAmount& nIn, bool fPlus, Separator
QString quotient_str = QString::number(quotient);
QString remainder_str = QString::number(remainder).rightJustified(num_decimals, '0');
// Use SI-stule separators as these are locale indendent and can't be
// confused with the decimal marker. Rule is to use a thin space every
// three digits on *both* sides of the decimal point - but only if there
// are five or more digits
// Use SI-style thin space separators as these are locale independent and can't be
// confused with the decimal marker.
QChar thin_sp(THIN_SP_CP);
int q_size = quotient_str.size();
if (separators == separatorAlways || (separators == separatorStandard && q_size > 4))