Clarify header

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22637 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-03-11 11:35:44 +00:00
parent 25ca8fc86b
commit 32fedc1510
2 changed files with 4 additions and 2 deletions

View file

@ -127,8 +127,8 @@
* call.<br />
* Before using the returned invocation, you need to set its target.
*/
#define NS_INVOCATION(class, message...) ({\
id __proxy = [NSInvocation _newProxyForInvocation: class]; \
#define NS_INVOCATION(aClass, message...) ({\
id __proxy = [NSInvocation _newProxyForInvocation: aClass]; \
[__proxy message]; \
[NSInvocation _returnInvocationAndDestroyProxy: __proxy]; \
})