mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Make NSObject conform to specs
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2987 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a7933f2496
commit
5380811bdc
14 changed files with 97 additions and 120 deletions
|
@ -237,14 +237,14 @@ static Class NSMutableSet_concrete_class;
|
|||
{
|
||||
id o, e = [self objectEnumerator];
|
||||
while ((o = [e nextObject]))
|
||||
[o perform:aSelector];
|
||||
[o performSelector:aSelector];
|
||||
}
|
||||
|
||||
- (void) makeObjectsPerform: (SEL)aSelector withObject:argument
|
||||
{
|
||||
id o, e = [self objectEnumerator];
|
||||
while ((o = [e nextObject]))
|
||||
[o perform:aSelector withObject: argument];
|
||||
[o performSelector:aSelector withObject: argument];
|
||||
}
|
||||
|
||||
- (BOOL) intersectsSet: (NSSet*) otherSet
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue