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:
Richard Frith-MacDonald 2009-06-15 07:13:11 +00:00
parent 80a1dc28ae
commit 80fe7ffde0

View file

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