mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 02:01:03 +00:00
Tidied
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3188 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a4317164de
commit
744dce36bb
4 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Mon Nov 9 20:45:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
|
* src/externs.m: corrected notification name for user defaults.
|
||||||
|
* src/NSUserDefaults.m: corrected notification name.
|
||||||
|
* src/include/NSUserDefaults.h: corrected notification name.
|
||||||
|
|
||||||
Mon Nov 9 11:30:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
Mon Nov 9 11:30:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
* src/externs.m: fixed error in hashtable constants.
|
* src/externs.m: fixed error in hashtable constants.
|
||||||
|
|
|
@ -41,9 +41,9 @@ extern NSString* NSGlobalDomain;
|
||||||
extern NSString* NSRegistrationDomain;
|
extern NSString* NSRegistrationDomain;
|
||||||
|
|
||||||
/* Public notification */
|
/* Public notification */
|
||||||
extern NSString *NSUserDefaultsDidChange;
|
extern NSString *NSUserDefaultsDidChangeNotification;
|
||||||
/* Backwards compatibility */
|
/* Backwards compatibility */
|
||||||
#define NSUserDefaultsChanged NSUserDefaultsDidChange
|
#define NSUserDefaultsChanged NSUserDefaultsDidChangeNotification
|
||||||
|
|
||||||
/* Keys for language-dependent information */
|
/* Keys for language-dependent information */
|
||||||
extern NSString *NSWeekDayNameArray;
|
extern NSString *NSWeekDayNameArray;
|
||||||
|
|
|
@ -726,7 +726,7 @@ static NSMutableString *processName = nil;
|
||||||
{
|
{
|
||||||
changedDomains = [[NSMutableArray arrayWithCapacity:5] retain];
|
changedDomains = [[NSMutableArray arrayWithCapacity:5] retain];
|
||||||
[[NSNotificationCenter defaultCenter]
|
[[NSNotificationCenter defaultCenter]
|
||||||
postNotificationName:NSUserDefaultsDidChange object:nil];
|
postNotificationName:NSUserDefaultsDidChangeNotification object:nil];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!tickingTimer)
|
if (!tickingTimer)
|
||||||
|
|
|
@ -124,7 +124,7 @@ NSString* NSGlobalDomain = @"NSGlobalDomain";
|
||||||
NSString* NSRegistrationDomain = @"NSRegistrationDomain";
|
NSString* NSRegistrationDomain = @"NSRegistrationDomain";
|
||||||
|
|
||||||
/* Public notification */
|
/* Public notification */
|
||||||
NSString *NSUserDefaultsDidChange = @"NSUserDefaultsDidChange";
|
NSString *NSUserDefaultsDidChangeNotification = @"NSUserDefaultsDidChangeNotification";
|
||||||
|
|
||||||
/* Keys for language-dependent information */
|
/* Keys for language-dependent information */
|
||||||
NSString *NSWeekDayNameArray = @"NSWeekDayNameArray";
|
NSString *NSWeekDayNameArray = @"NSWeekDayNameArray";
|
||||||
|
|
Loading…
Reference in a new issue