mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Minor tidy up for methodForSelector:
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19183 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a0c5edbefe
commit
488e376948
4 changed files with 7 additions and 10 deletions
|
@ -3,6 +3,8 @@
|
|||
* Source/NSProtocolChecker.m: Major rewrite ... appeared almost totally
|
||||
non-functional.
|
||||
* Testing/nsconnectiion_server.m: Use NSProtocolChecker as a test.
|
||||
* Source/NSDistantObject.m: ([methodForSelector:]) moved to NSProxy.m
|
||||
* Source/NSProxy.m: ([methodForSelector:]) implemented.
|
||||
|
||||
2004-04-23 David Ayers <d.ayers@inode.at>
|
||||
|
||||
|
|
|
@ -624,11 +624,6 @@ enum
|
|||
return self;
|
||||
}
|
||||
|
||||
- (IMP) methodForSelector: (SEL)aSelector
|
||||
{
|
||||
return get_imp(GSObjCClass((id)self), aSelector);
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Returns the method signature describing the arguments and return
|
||||
* types of the method in the object referred to by the receiver
|
||||
|
|
|
@ -160,11 +160,6 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
- (IMP) methodForSelector: (SEL)aSelector
|
||||
{
|
||||
return get_imp(GSObjCClass((id)self), aSelector);
|
||||
}
|
||||
|
||||
- (NSMethodSignature*) methodSignatureForSelector: (SEL)aSelector
|
||||
{
|
||||
const char *types;
|
||||
|
|
|
@ -121,6 +121,11 @@ extern BOOL __objc_responds_to(id, SEL);
|
|||
/* Do nothing */
|
||||
}
|
||||
|
||||
- (IMP) methodForSelector: (SEL)aSelector
|
||||
{
|
||||
return get_imp(GSObjCClass((id)self), aSelector);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the method signature for the specified selector.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue