sync
diff --git a/tinyxml2.cpp b/tinyxml2.cpp
index ee0f88c..3614b46 100644
--- a/tinyxml2.cpp
+++ b/tinyxml2.cpp
@@ -275,7 +275,7 @@
 XMLNode::XMLNode( XMLDocument* doc ) :

 	document( doc ),

 	parent( 0 ),

-	isTextParent( false ),

+//	isTextParent( false ),

 	firstChild( 0 ), lastChild( 0 ),

 	prev( 0 ), next( 0 )

 {

@@ -342,9 +342,9 @@
 		addThis->prev = 0;

 		addThis->next = 0;

 	}

-	if ( addThis->ToText() ) {

-		SetTextParent();

-	}

+//	if ( addThis->ToText() ) {

+//		SetTextParent();

+//	}

 	return addThis;

 }