ICU-65 Custom string was being truncated

X-SVN-Rev: 311
This commit is contained in:
Steven R. Loomis 1999-12-05 09:14:26 +00:00
parent 3a3198e7f3
commit 392bf58ebe

View file

@ -55,7 +55,7 @@ TimeZone* TimeZone::fgDefaultZone = NULL;
const UnicodeString TimeZone::GMT_ID = UNICODE_STRING("GMT", 3);
const int32_t TimeZone::GMT_ID_LENGTH = 3;
const UnicodeString TimeZone::CUSTOM_ID = UNICODE_STRING("Custom", 3);
const UnicodeString TimeZone::CUSTOM_ID = UNICODE_STRING("Custom", 6);
const TimeZone* TimeZone::GMT = new SimpleTimeZone(0, GMT_ID);