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

@ -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