ICU-1722 Use FALSE, not false.

X-SVN-Rev: 14761
This commit is contained in:
George Rhoten 2004-03-25 16:28:25 +00:00
parent 511d5c8fd1
commit fee6977d9d

View File

@ -782,7 +782,7 @@ FractionalPartSubstitution::doSubstitution(double number, UnicodeString& toInser
DigitList dl;
dl.set(number, 20, TRUE);
UBool pad = false;
UBool pad = FALSE;
while (dl.fCount > (dl.fDecimalAt <= 0 ? 0 : dl.fDecimalAt)) {
if (pad && useSpaces) {
toInsertInto.insert(_pos + getPos(), gSpace);