This commit is contained in:
Lee Thomason
2012-02-13 15:07:09 -08:00
parent 50f97b2d06
commit 50adb4ca8e
3 changed files with 53 additions and 31 deletions

View File

@@ -275,7 +275,7 @@ bool XMLDocument::Accept( XMLVisitor* visitor ) const
XMLNode::XMLNode( XMLDocument* doc ) :
document( doc ),
parent( 0 ),
isTextParent( false ),
// isTextParent( false ),
firstChild( 0 ), lastChild( 0 ),
prev( 0 ), next( 0 )
{
@@ -342,9 +342,9 @@ XMLNode* XMLNode::InsertEndChild( XMLNode* addThis )
addThis->prev = 0;
addThis->next = 0;
}
if ( addThis->ToText() ) {
SetTextParent();
}
// if ( addThis->ToText() ) {
// SetTextParent();
// }
return addThis;
}