mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Bugfix for NSObject superclass reference.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15474 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d3b8b1db7c
commit
77fbafc557
2 changed files with 15 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2003-01-03 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Tools/AGSHtml.m: Don't try to make a type reference to the
|
||||||
|
superclass of NSObject.
|
||||||
|
|
||||||
2002-12-31 Richard Frith-Macdonald <rfm@gnu.org>
|
2002-12-31 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/NSPage.m: Document all functions.
|
* Source/NSPage.m: Document all functions.
|
||||||
|
|
|
@ -532,11 +532,14 @@ static NSMutableSet *textNodes = nil;
|
||||||
[buf appendString: @"<h2>"];
|
[buf appendString: @"<h2>"];
|
||||||
[buf appendString:
|
[buf appendString:
|
||||||
[self makeAnchor: classname ofType: @"class" name: classname]];
|
[self makeAnchor: classname ofType: @"class" name: classname]];
|
||||||
sup = [self typeRef: sup];
|
|
||||||
if (sup != nil)
|
if (sup != nil)
|
||||||
{
|
{
|
||||||
[buf appendString: @" : "];
|
sup = [self typeRef: sup];
|
||||||
[buf appendString: sup];
|
if (sup != nil)
|
||||||
|
{
|
||||||
|
[buf appendString: @" : "];
|
||||||
|
[buf appendString: sup];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
[buf appendString: @"</h2>\n"];
|
[buf appendString: @"</h2>\n"];
|
||||||
[self outputUnit: node to: buf];
|
[self outputUnit: node to: buf];
|
||||||
|
@ -2178,6 +2181,10 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
|
||||||
NSRange er;
|
NSRange er;
|
||||||
NSRange sr;
|
NSRange sr;
|
||||||
|
|
||||||
|
if (end == 0)
|
||||||
|
{
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
t = str;
|
t = str;
|
||||||
while (end > 0)
|
while (end > 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue