mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
Minor documentation tweaks.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18938 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1df7325dc3
commit
e845237c55
7 changed files with 59 additions and 44 deletions
|
@ -903,7 +903,7 @@ static NSMapTable *absolutes = 0;
|
|||
* 2) the GNUSTEP_TZ environment variable<br/ >
|
||||
* 3) the file "localtime" in System/Library/Libraries/Resources/NSTimeZone<br/ >
|
||||
* 4) the TZ environment variable<br/ >
|
||||
* 5) tzset() and tznam on platforms which have it<br/ >
|
||||
* 5) tzset and tznam on platforms which have it<br/ >
|
||||
* 6) Windows registry, on Win32 systems<br/ >
|
||||
* 7) or the fallback time zone (which is UTC)<br/ >
|
||||
* with the ones listed first having precedence.
|
||||
|
@ -1368,11 +1368,11 @@ static NSMapTable *absolutes = 0;
|
|||
* Returns a timezone for aTimeZoneName, created from the supplied
|
||||
* time zone data. Data must be in TZ format as per the Olson database.
|
||||
*/
|
||||
+ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName data: (NSData*)data
|
||||
+ (NSTimeZone*) timeZoneWithName: (NSString*)name data: (NSData*)data
|
||||
{
|
||||
NSTimeZone *zone;
|
||||
|
||||
zone = [defaultPlaceholderTimeZone initWithName: aTimeZoneName data: data];
|
||||
zone = [defaultPlaceholderTimeZone initWithName: name data: data];
|
||||
return AUTORELEASE(zone);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue