Added registerName: method to NSConnection with associated changes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@5923 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 2000-02-04 18:14:13 +00:00
parent 78616c9359
commit 1629c565b9
6 changed files with 379 additions and 259 deletions

View file

@ -222,7 +222,7 @@ static Class NSMutableSet_concrete_class;
}
/* Same as NSArray */
- initWithObjects: firstObject, ...
- (id) initWithObjects: firstObject, ...
{
va_list ap;
va_start(ap, firstObject);
@ -232,12 +232,12 @@ static Class NSMutableSet_concrete_class;
}
/* Override superclass's designated initializer */
- init
- (id) init
{
return [self initWithObjects: NULL count: 0];
}
- initWithArray: (NSArray*)other
- (id) initWithArray: (NSArray*)other
{
unsigned count = [other count];