git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17372 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2003-07-27 08:59:08 +00:00
parent d96f5b48c8
commit 54b5983408
4 changed files with 17 additions and 2 deletions

View file

@ -50,6 +50,7 @@ static Class NSInvocation_concrete_class;
+ (id) _newWithTarget: (id)t;
- (NSInvocation*) _invocation;
- (void) forwardInvocation: (NSInvocation*)anInvocation;
- (NSMethodSignature*) methodSignatureForSelector: (SEL)aSelector;
@end
@interface GSMessageProxy : GSInvocationProxy
@end
@ -1001,7 +1002,7 @@ _arg_addr(NSInvocation *inv, int index)
{
GSInvocationProxy *o;
o = (GSInvocationProxy*) NSAllocateObject(self, 0, NSDefaultMallocZone());
o->target = t;
o->target = RETAIN(t);
return o;
}
- (NSInvocation*) _invocation
@ -1025,6 +1026,10 @@ _arg_addr(NSInvocation *inv, int index)
{
invocation = anInvocation;
}
- (NSMethodSignature*) methodSignatureForSelector: (SEL)aSelector
{
return [target methodSignatureForSelector: aSelector];
}
@end
@implementation GSMessageProxy