fixup indentaton.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28352 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2009-06-15 07:13:11 +00:00
parent eb93dab8b1
commit 14db1fcb9f

View file

@ -447,16 +447,19 @@ enum proxyLocation
* NSProxy subclasses must override -init or an exception will be thrown. This * NSProxy subclasses must override -init or an exception will be thrown. This
* calls the forwarding mechanism to invoke -init on the remote object. * calls the forwarding mechanism to invoke -init on the remote object.
*/ */
- (id)init - (id) init
{ {
NSMethodSignature *sig = [self methodSignatureForSelector: _cmd]; NSMethodSignature *sig;
NSInvocation *inv = [NSInvocation invocationWithMethodSignature: sig]; NSInvocation *inv;
id ret; id ret;
[inv setTarget: self];
[inv setSelector: _cmd]; sig = [self methodSignatureForSelector: _cmd];
[self forwardInvocation: inv]; inv = [NSInvocation invocationWithMethodSignature: sig];
[inv getReturnValue: &ret]; [inv setTarget: self];
return ret; [inv setSelector: _cmd];
[self forwardInvocation: inv];
[inv getReturnValue: &ret];
return ret;
} }
- (void) dealloc - (void) dealloc