mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Make correct type cross references for constants, variables, functions, and typedefs.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12516 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8163f65daf
commit
04181b5c93
1 changed files with 5 additions and 1 deletions
|
@ -553,10 +553,11 @@ static NSMutableSet *textNodes = nil;
|
|||
|
||||
nam = [prop objectForKey: @"name"];
|
||||
str = [prop objectForKey: @"type"];
|
||||
str = [self typeRef: str];
|
||||
str = [str stringByAppendingFormat: @" %@;", nam];
|
||||
|
||||
/*
|
||||
* Output function heading.
|
||||
* Output heading.
|
||||
*/
|
||||
[buf appendString: indent];
|
||||
[buf appendString: @"<h3>"];
|
||||
|
@ -808,6 +809,7 @@ static NSMutableSet *textNodes = nil;
|
|||
|
||||
fun = [prop objectForKey: @"name"];
|
||||
str = [prop objectForKey: @"type"];
|
||||
str = [self typeRef: str];
|
||||
str = [str stringByAppendingFormat: @" %@(", fun];
|
||||
children = nil;
|
||||
while (tmp != nil)
|
||||
|
@ -1454,6 +1456,7 @@ static NSMutableSet *textNodes = nil;
|
|||
|
||||
nam = [prop objectForKey: @"name"];
|
||||
str = [prop objectForKey: @"type"];
|
||||
str = [self typeRef: str];
|
||||
str = [NSString stringWithFormat: @"typedef %@ %@", str, nam];
|
||||
|
||||
/*
|
||||
|
@ -1526,6 +1529,7 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
|
|||
|
||||
nam = [prop objectForKey: @"name"];
|
||||
str = [prop objectForKey: @"type"];
|
||||
str = [self typeRef: str];
|
||||
str = [str stringByAppendingFormat: @" %@", nam];
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue