mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-20 12:16:40 +00:00
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:
parent
e580f7e25b
commit
5be36e089c
128 changed files with 697 additions and 456 deletions
|
@ -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]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue