mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
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:
parent
273b2904ee
commit
b997cc309f
6 changed files with 379 additions and 259 deletions
|
@ -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];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue