mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* 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:
parent
2007e57535
commit
91bf9734ad
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue