mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-11 00:30:49 +00:00
bugfix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11940 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
af91c911bd
commit
7238c8dd84
2 changed files with 15 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-01-02 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Tools/AGSIndex.m: Bugfix in setting links to superclasses.
|
||||
|
||||
2002-01-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/GNUmakefile: Use new -Standards flag for autogsdoc
|
||||
|
|
|
@ -216,16 +216,23 @@ setDirectory(NSMutableDictionary *dict, NSString *path)
|
|||
}
|
||||
else if ([name isEqual: @"class"] == YES)
|
||||
{
|
||||
NSString *tmp;
|
||||
NSString *tmp;
|
||||
|
||||
newUnit = YES;
|
||||
unit = [prop objectForKey: @"name"];
|
||||
[self setGlobalRef: unit type: name];
|
||||
|
||||
tmp = [prop objectForKey: @"super"];
|
||||
if (tmp != nil)
|
||||
{
|
||||
[self setGlobalRef: unit type: @"super"];
|
||||
NSMutableDictionary *t;
|
||||
|
||||
t = [refs objectForKey: @"super"];
|
||||
if (t == nil)
|
||||
{
|
||||
t = [NSMutableDictionary new];
|
||||
[refs setObject: t forKey: @"super"];
|
||||
RELEASE(t);
|
||||
}
|
||||
[t setObject: tmp forKey: unit];
|
||||
}
|
||||
}
|
||||
else if ([name isEqual: @"gsdoc"] == YES)
|
||||
|
|
Loading…
Reference in a new issue