@@ -638,12 +638,12 @@ else child = [childrenObjects[j] XMLStringWithIndentation: ind level: level + 1]; - [tmp addItemsFromCArray: [child UTF8String] - count: [child UTF8StringLength]]; + [tmp addItems: [child UTF8String] + count: [child UTF8StringLength]]; } if (indent) [tmp addItem: "\n"]; @@ -657,11 +657,11 @@ @throw e; } cString[i++] = '>'; - memcpy(cString + i, [tmp cArray], [tmp count]); + memcpy(cString + i, [tmp items], [tmp count]); i += [tmp count]; if (indent) { memset(cString + i, ' ', level * indentation); i += level * indentation;