mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-11 08:40:44 +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>
|
2002-01-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/GNUmakefile: Use new -Standards flag for autogsdoc
|
* Source/GNUmakefile: Use new -Standards flag for autogsdoc
|
||||||
|
|
|
@ -220,12 +220,19 @@ setDirectory(NSMutableDictionary *dict, NSString *path)
|
||||||
|
|
||||||
newUnit = YES;
|
newUnit = YES;
|
||||||
unit = [prop objectForKey: @"name"];
|
unit = [prop objectForKey: @"name"];
|
||||||
[self setGlobalRef: unit type: name];
|
|
||||||
|
|
||||||
tmp = [prop objectForKey: @"super"];
|
tmp = [prop objectForKey: @"super"];
|
||||||
if (tmp != nil)
|
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)
|
else if ([name isEqual: @"gsdoc"] == YES)
|
||||||
|
|
Loading…
Reference in a new issue