소스 검색

2004-10-28 Atsushi Enomoto <[email protected]>

	* XmlDocument.cs : XPathEditableDocument looks broken. Just reverted
	  to fix 2.0 corcompare.

svn path=/trunk/mcs/; revision=35375
Atsushi Eno 21 년 전
부모
커밋
65c290bee7
2개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 0
      mcs/class/System.XML/System.Xml/ChangeLog
  2. 1 1
      mcs/class/System.XML/System.Xml/XmlDocument.cs

+ 5 - 0
mcs/class/System.XML/System.Xml/ChangeLog

@@ -1,3 +1,8 @@
+2004-10-28  Atsushi Enomoto <[email protected]>
+
+	* XmlDocument.cs : XPathEditableDocument looks broken. Just reverted
+	  to fix 2.0 corcompare.
+
 2004-10-26  Atsushi Enomoto <[email protected]>
 
 	* XmlTextReader.cs : Don't create attribute Value string on Read()

+ 1 - 1
mcs/class/System.XML/System.Xml/XmlDocument.cs

@@ -359,7 +359,7 @@ namespace System.Xml
 
 		protected internal virtual XPathNavigator CreateNavigator (XmlNode node)
 		{
-#if NET_2_0
+#if NET_2_0tmp_out
 			return new XPathEditableDocument (node).CreateNavigator ();
 #else
 			return new XmlDocumentNavigator (node);