ICU-2424 Use TRUE, not true

X-SVN-Rev: 14069
This commit is contained in:
George Rhoten 2003-12-10 01:29:48 +00:00
parent 46a95a27d5
commit 5f03ec8688

View File

@ -230,7 +230,7 @@ void HebrewCalendar::add(UCalendarDateFields field, int32_t amount, UErrorCode&
}
month -= ELUL+1;
++year;
acrossAdar1 = true;
acrossAdar1 = TRUE;
}
} else {
acrossAdar1 = (month > ADAR_1); // started after ADAR_1?
@ -244,7 +244,7 @@ void HebrewCalendar::add(UCalendarDateFields field, int32_t amount, UErrorCode&
}
month += ELUL+1;
--year;
acrossAdar1 = true;
acrossAdar1 = TRUE;
}
}
set(UCAL_MONTH, month);