mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
Make NSObject conform to specs
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2987 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5413324b26
commit
fca11c379c
14 changed files with 97 additions and 120 deletions
|
@ -176,7 +176,7 @@
|
|||
return nil;
|
||||
}
|
||||
|
||||
- perform: (SEL)aSelector
|
||||
- performSelector: (SEL)aSelector
|
||||
{
|
||||
IMP msg = objc_msg_lookup(self, aSelector);
|
||||
|
||||
|
@ -189,7 +189,7 @@
|
|||
return (*msg)(self, aSelector);
|
||||
}
|
||||
|
||||
- perform: (SEL)aSelector withObject: anObject
|
||||
- performSelector: (SEL)aSelector withObject: anObject
|
||||
{
|
||||
IMP msg = objc_msg_lookup(self, aSelector);
|
||||
|
||||
|
@ -202,7 +202,7 @@
|
|||
return (*msg)(self, aSelector, anObject);
|
||||
}
|
||||
|
||||
- perform: (SEL)aSelector withObject: anObject withObject: anotherObject
|
||||
- performSelector: (SEL)aSelector withObject: anObject withObject: anotherObject
|
||||
{
|
||||
IMP msg = objc_msg_lookup(self, aSelector);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue