mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +00:00
Tidyup
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13696 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0c6805314c
commit
2714e15325
2 changed files with 9 additions and 2 deletions
|
@ -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>
|
||||
|
||||
* Headers/gnustep/base/GSXML.h: Add _parent ivars
|
||||
|
|
|
@ -4625,7 +4625,7 @@ nodeToObject(GSXMLNode* node)
|
|||
return nil;
|
||||
}
|
||||
name = [node name];
|
||||
children = [node children];
|
||||
children = [node firstChild];
|
||||
content = [children content];
|
||||
children = elementNode(children);
|
||||
|
||||
|
@ -4917,7 +4917,7 @@ GSPropertyList(NSString *string)
|
|||
[[[parser document] root] name]];
|
||||
return nil;
|
||||
}
|
||||
pl = RETAIN(nodeToObject([[[parser document] root] children]));
|
||||
pl = RETAIN(nodeToObject([[[parser document] root] firstChild]));
|
||||
return AUTORELEASE(pl);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue