mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-66 Initialized fStartMode and fEndMode.
X-SVN-Rev: 126
This commit is contained in:
parent
3fd1e18513
commit
69bcef3a00
1 changed files with 6 additions and 0 deletions
|
@ -54,6 +54,8 @@ SimpleTimeZone::SimpleTimeZone(int32_t rawOffset, const UnicodeString& ID)
|
|||
endTime(0),
|
||||
startYear(0),
|
||||
dstSavings(U_MILLIS_PER_HOUR),
|
||||
startMode(DOM_MODE),
|
||||
endMode(DOM_MODE),
|
||||
useDaylight(FALSE)
|
||||
{
|
||||
setID(ID);
|
||||
|
@ -80,6 +82,8 @@ SimpleTimeZone::SimpleTimeZone(int32_t rawOffset, const UnicodeString& ID,
|
|||
this->endDayOfWeek = endDayOfWeek;
|
||||
this->endTime = endTime;
|
||||
this->dstSavings = U_MILLIS_PER_HOUR;
|
||||
this->startMode = DOM_MODE;
|
||||
this->endMode = DOM_MODE;
|
||||
|
||||
decodeRules(status);
|
||||
}
|
||||
|
@ -105,6 +109,8 @@ SimpleTimeZone::SimpleTimeZone(int32_t rawOffset, const UnicodeString& ID,
|
|||
this->endDayOfWeek = endDayOfWeek;
|
||||
this->endTime = endTime;
|
||||
this->dstSavings = dstSavings;
|
||||
this->startMode = DOM_MODE;
|
||||
this->endMode = DOM_MODE;
|
||||
|
||||
decodeRules(status);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue