* Source/NSCalendarDate.m [-initWithString:] Revert to previous

code, and try to load time zone abbreviation from name first.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20227 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2004-10-16 03:05:58 +00:00
parent 64ff173e3a
commit 67ef77deea
2 changed files with 10 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2004-10-05 Georg Fleischmann
* Source/NSCalendarDate.m [-initWithString:] Revert to previous
code, and try to load time zone abbreviation from name first.
2004-10-15 Richard Frith-Macdonald <rfm@gnu.org>
* Source/GSHTTPURLHandle.m: Don't expect a baody where status is 204

View file

@ -1132,14 +1132,14 @@ static inline int getDigits(const char *from, char *to, int limit)
{
NSString *z = [NSString stringWithCString: tmpStr];
if ([[NSTimeZone abbreviationDictionary] objectForKey: z])
/* Abbreviations aren't one-to-one with time zone names
so just look for the zone named after the abbreviation,
then look up the abbreviation as a last resort */
tz = [NSTimeZone timeZoneWithName: z];
if (tz == nil)
{
tz = [NSTimeZone timeZoneWithAbbreviation: z];
}
else
{
tz = [NSTimeZone timeZoneWithName: z];
}
}
break;