mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
(CALL_METHOD_IN_CLASS): Fix typo.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@289 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6d7cf36335
commit
be56d6ad02
2 changed files with 4 additions and 4 deletions
|
@ -48,8 +48,8 @@ void class_add_behavior (Class class, Class behavior);
|
|||
a CLASS with a different instance variable layout than "self". */
|
||||
|
||||
#define CALL_METHOD_IN_CLASS(CLASS, METHOD, ARGS...) \
|
||||
((*imp([CLASS class], @selector(METHOD))) \
|
||||
self, @selector(METHOD), ## ARGS)
|
||||
((*(get_imp([CLASS class], @selector(METHOD)))) \
|
||||
(self, @selector(METHOD), ## ARGS))
|
||||
|
||||
/* Set to non-zero if you want debugging messages on stderr. */
|
||||
void set_behavior_debug(int i);
|
||||
|
|
|
@ -48,8 +48,8 @@ void class_add_behavior (Class class, Class behavior);
|
|||
a CLASS with a different instance variable layout than "self". */
|
||||
|
||||
#define CALL_METHOD_IN_CLASS(CLASS, METHOD, ARGS...) \
|
||||
((*imp([CLASS class], @selector(METHOD))) \
|
||||
self, @selector(METHOD), ## ARGS)
|
||||
((*(get_imp([CLASS class], @selector(METHOD)))) \
|
||||
(self, @selector(METHOD), ## ARGS))
|
||||
|
||||
/* Set to non-zero if you want debugging messages on stderr. */
|
||||
void set_behavior_debug(int i);
|
||||
|
|
Loading…
Reference in a new issue