Many minor fixes for autogsdoc.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11787 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2001-12-17 14:31:42 +00:00
parent e580f7e25b
commit 5be36e089c
128 changed files with 697 additions and 456 deletions

View file

@ -1,4 +1,4 @@
/* Implementation of NSNotification for GNUstep
/** Implementation of NSNotification for GNUstep
Copyright (C) 1996 Free Software Foundation, Inc.
Written by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
@ -31,7 +31,7 @@
/* This is the designated initializer. */
- (id) initWithName: (NSString*)name
object: (id)object
userInfo: (id)info
userInfo: (NSDictionary*)info
{
[super init];
_name = [name copyWithZone: NSDefaultMallocZone()];
@ -53,7 +53,7 @@
+ (NSNotification*) notificationWithName: (NSString*)name
object: (id)object
userInfo: (id)info
userInfo: (NSDictionary*)info
{
return AUTORELEASE([[self allocWithZone: NSDefaultMallocZone()]
initWithName: name object: object userInfo: info]);