* 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:
David Ayers 2003-03-31 16:02:46 +00:00
parent f3e520ee9a
commit 6ef9cc7dee
2 changed files with 7 additions and 1 deletions

View file

@ -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):

View file

@ -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;