@@ -263,11 +263,11 @@ - (OFArray*)children { return [[children copy] autorelease]; } -- (OFString*)_stringValueWithParent: (OFXMLElement*)parent +- (OFString*)_XMLStringWithParent: (OFXMLElement*)parent { OFAutoreleasePool *pool, *pool2; char *str_c; size_t len, i, j, attrs_count; OFString *prefix, *parent_prefix; @@ -434,11 +434,11 @@ for (j = 0; j < children_count; j++) append(tmp, @selector( appendCStringWithoutUTF8Checking:), [[children_carray[j] - _stringValueWithParent: self] cString]); + _XMLStringWithParent: self] cString]); len += [tmp cStringLength] + [name cStringLength] + 2; @try { str_c = [self resizeMemory: str_c toSize: len]; @@ -484,18 +484,18 @@ [self freeMemory: str_c]; } return ret; } -- (OFString*)stringValue +- (OFString*)XMLString { - return [self _stringValueWithParent: nil]; + return [self _XMLStringWithParent: nil]; } - (OFString*)description { - return [self stringValue]; + return [self XMLString]; } - (void)addAttribute: (OFXMLAttribute*)attr { if (name == nil)