mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-21 04:32:03 +00:00
Tidied
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17372 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d96f5b48c8
commit
54b5983408
4 changed files with 17 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue