Corrected issue with GSObjCMethodNames function.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17374 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2003-07-27 14:57:47 +00:00
parent 54b5983408
commit e360fa5bf5
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2003-07-27 Gregory John Casamento <greg_casamento@yahoo.com> &
Alexander Malmberg <alexander@malmberg.org>
* Source/Additions/GSObjCRuntime.m: GSObjCMethodNames was not
returning all methods for the object given.
2003-07-27 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSInvocation.m: implement methodSignatureForSelector for

View file

@ -163,7 +163,7 @@ GSObjCMethodNames(id obj)
}
#else
methods = class->methods;
if (methods != 0)
while (methods != 0)
{
int i;