mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-21 02:20:55 +00:00
* EOControl/EOFault.m ([EOFault respondsToSelector:]): Replaced
usage of potential future runtime function name with current function name. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@16301 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f3e520ee9a
commit
6ef9cc7dee
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-03-31 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOControl/EOFault.m ([EOFault respondsToSelector:]): Replaced
|
||||
usage of potential future runtime function name with current
|
||||
function name.
|
||||
|
||||
2003-03-30 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* *.h/m, *.h/m):
|
||||
|
|
|
@ -320,7 +320,7 @@ static Class EOFaultClass = NULL;
|
|||
NSDebugFLLog(@"gsdb", @"class=%@ aSelector=%@", class,
|
||||
NSStringFromSelector(aSelector));
|
||||
|
||||
respondsToSelector = (GSObjCGetInstanceMethod(class, aSelector) != (IMP)0);
|
||||
respondsToSelector = (GSObjCGetMethod(class, aSelector) != (IMP)0);
|
||||
NSDebugFLLog(@"gsdb", @"STOP self=%p", self);
|
||||
|
||||
return respondsToSelector;
|
||||
|
|
Loading…
Reference in a new issue