(perform:with:with:): New method added to (NEXTSTEP) category.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@228 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-04-03 01:32:58 +00:00
parent 6c9057ae45
commit 16ae846a4f

View file

@ -505,6 +505,11 @@ BOOL NSDecrementExtraRefCountWasZero(id anObject)
return [self perform:sel withObject:anObject];
}
- perform: (SEL)sel with: anObject with: anotherObject
{
return [self perform:sel withObject:anObject withObject:anotherObject];
}
@end
@implementation NSObject (GNU)