mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
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:
parent
25ca8fc86b
commit
32fedc1510
2 changed files with 4 additions and 2 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
* Headers/Additions/GNUstepBase/GSXML.h: clarify documentation of
|
||||
xml entity escaping methods.
|
||||
* Headers/Foundation/NSInvocation.h: don't use 'class' as macro
|
||||
argument ... should be hermless but is confusing to C++ programmers.
|
||||
|
||||
2006-03-10 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -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]; \
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue