mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Various indexing bugfixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11783 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4083099aaf
commit
c449ab42b7
2 changed files with 4 additions and 3 deletions
|
@ -731,7 +731,7 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
|
||||||
[buf appendString: indent];
|
[buf appendString: indent];
|
||||||
[buf appendString: @"<h3>"];
|
[buf appendString: @"<h3>"];
|
||||||
s = [self makeLink: sel ofType: @"method" inUnit: nil isRef: NO];
|
s = [self makeLink: sel ofType: @"method" inUnit: nil isRef: NO];
|
||||||
if (s == nil)
|
if (s != nil)
|
||||||
{
|
{
|
||||||
[buf appendString: s];
|
[buf appendString: s];
|
||||||
[buf appendString: [sel substringFromIndex: 1]];
|
[buf appendString: [sel substringFromIndex: 1]];
|
||||||
|
@ -1222,7 +1222,8 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
|
||||||
{
|
{
|
||||||
[buf appendString: indent];
|
[buf appendString: indent];
|
||||||
[buf appendString: @"<li>"];
|
[buf appendString: @"<li>"];
|
||||||
[buf appendString: [self makeLink: s ofType: @"method" isRef: YES]];
|
[buf appendString:
|
||||||
|
[self makeLink: s ofType: @"method" inUnit: unit isRef: YES]];
|
||||||
[buf appendString: s];
|
[buf appendString: s];
|
||||||
[buf appendString: @"</a></li>\n"];
|
[buf appendString: @"</a></li>\n"];
|
||||||
}
|
}
|
||||||
|
|
|
@ -453,7 +453,7 @@ setDirectory(NSMutableDictionary *dict, NSString *path)
|
||||||
|
|
||||||
t = [refs objectForKey: type];
|
t = [refs objectForKey: type];
|
||||||
t = [t objectForKey: ref];
|
t = [t objectForKey: ref];
|
||||||
return [t objectForKey: unit];
|
return [t objectForKey: u];
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue