* Source/NSXMLElement.m: Correct warning in copyWithZone: added

return.  Correct issue with childCount being out of sync.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34431 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2012-01-06 03:11:14 +00:00
parent 5f1460c232
commit 98ed1c6763

View file

@ -202,6 +202,7 @@ GS_PRIVATE_INTERNAL(NSXMLElement)
[child setParent: self];
[internal->children insertObject: child
atIndex: index];
internal->childCount++;
}
- (void) insertChildren: (NSArray*)children atIndex: (NSUInteger)index