git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13696 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2002-05-23 17:04:52 +00:00
parent 0c6805314c
commit 2714e15325
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2002-05-23 Richard Frith-Macdonald <rfm@gnu.org>
* Source/Additions/GSXML.m: Fix a few errors in last changes.
* Source/NSString.m: Updates for GSXML changes.
* Tools/AGSHtml.m: Updates for GSXML changes.
* Tools/AGSIndex.m: Updates for GSXML changes.
2002-05-22 Richard Frith-Macdonald <rfm@gnu.org> 2002-05-22 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/gnustep/base/GSXML.h: Add _parent ivars * Headers/gnustep/base/GSXML.h: Add _parent ivars

View file

@ -4625,7 +4625,7 @@ nodeToObject(GSXMLNode* node)
return nil; return nil;
} }
name = [node name]; name = [node name];
children = [node children]; children = [node firstChild];
content = [children content]; content = [children content];
children = elementNode(children); children = elementNode(children);
@ -4917,7 +4917,7 @@ GSPropertyList(NSString *string)
[[[parser document] root] name]]; [[[parser document] root] name]];
return nil; return nil;
} }
pl = RETAIN(nodeToObject([[[parser document] root] children])); pl = RETAIN(nodeToObject([[[parser document] root] firstChild]));
return AUTORELEASE(pl); return AUTORELEASE(pl);
} }
#endif #endif