mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
54b5983408
commit
e360fa5bf5
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -163,7 +163,7 @@ GSObjCMethodNames(id obj)
|
|||
}
|
||||
#else
|
||||
methods = class->methods;
|
||||
if (methods != 0)
|
||||
while (methods != 0)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue