mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
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:
parent
80a1dc28ae
commit
80fe7ffde0
1 changed files with 12 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue