mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +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
637d1e47d9
commit
2bcdae97bb
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>
|
||||
|
||||
* src/externs.m: fixed error in hashtable constants.
|
||||
|
|
|
@ -41,9 +41,9 @@ extern NSString* NSGlobalDomain;
|
|||
extern NSString* NSRegistrationDomain;
|
||||
|
||||
/* Public notification */
|
||||
extern NSString *NSUserDefaultsDidChange;
|
||||
extern NSString *NSUserDefaultsDidChangeNotification;
|
||||
/* Backwards compatibility */
|
||||
#define NSUserDefaultsChanged NSUserDefaultsDidChange
|
||||
#define NSUserDefaultsChanged NSUserDefaultsDidChangeNotification
|
||||
|
||||
/* Keys for language-dependent information */
|
||||
extern NSString *NSWeekDayNameArray;
|
||||
|
|
|
@ -726,7 +726,7 @@ static NSMutableString *processName = nil;
|
|||
{
|
||||
changedDomains = [[NSMutableArray arrayWithCapacity:5] retain];
|
||||
[[NSNotificationCenter defaultCenter]
|
||||
postNotificationName:NSUserDefaultsDidChange object:nil];
|
||||
postNotificationName:NSUserDefaultsDidChangeNotification object:nil];
|
||||
}
|
||||
|
||||
if (!tickingTimer)
|
||||
|
|
|
@ -124,7 +124,7 @@ NSString* NSGlobalDomain = @"NSGlobalDomain";
|
|||
NSString* NSRegistrationDomain = @"NSRegistrationDomain";
|
||||
|
||||
/* Public notification */
|
||||
NSString *NSUserDefaultsDidChange = @"NSUserDefaultsDidChange";
|
||||
NSString *NSUserDefaultsDidChangeNotification = @"NSUserDefaultsDidChangeNotification";
|
||||
|
||||
/* Keys for language-dependent information */
|
||||
NSString *NSWeekDayNameArray = @"NSWeekDayNameArray";
|
||||
|
|
Loading…
Reference in a new issue