mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Minor bugfix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15306 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5bbbb1b94c
commit
f904135bc3
2 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-12-17 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Tools/AGSIndex.m: Fix error indexing vararg methods.
|
||||
|
||||
2002-12-12 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/gnustep/base/NSDistributedNotificationCenter.h: add type
|
||||
|
|
|
@ -357,17 +357,17 @@ setDirectory(NSMutableDictionary *dict, NSString *path)
|
|||
t = [t next];
|
||||
}
|
||||
}
|
||||
else if ([[tmp name] isEqual: @"arg"] == NO)
|
||||
{
|
||||
children = tmp;
|
||||
break;
|
||||
}
|
||||
else if ([[tmp name] isEqual: @"vararg"] == YES)
|
||||
{
|
||||
sel = [sel stringByAppendingString: @",..."];
|
||||
children = [tmp next];
|
||||
break;
|
||||
}
|
||||
else if ([[tmp name] isEqual: @"arg"] == NO)
|
||||
{
|
||||
children = tmp;
|
||||
break;
|
||||
}
|
||||
}
|
||||
tmp = [tmp next];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue