mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +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
eb93dab8b1
commit
14db1fcb9f
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
|
* 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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue