* GormCore/GormFunctions.m: Correct the function which enumerates

over the list of methods in a class when adding from a palette.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@29599 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2010-02-13 00:59:10 +00:00
parent 2007e57535
commit 91bf9734ad
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-02-12 20:01-EST Gregory John Casamento <greg.casamento@gmail.com>
* GormCore/GormFunctions.m: Correct the function which enumerates
over the list of methods in a class when adding from a palette.
2010-02-08 07:13-EST Gregory John Casamento <greg.casamento@gmail.com>
* Gorm.m: Separate out the server methods into a category.

View file

@ -366,7 +366,7 @@ NSArray *_GSObjCMethodNamesForClass(Class class, BOOL collect)
{
void *iterator = 0;
while ((methods = NULL)) //class_nextMethodList(class, &iterator)))
while ((methods = class_nextMethodList(class, &iterator)))
{
int i;