Bläddra i källkod

2004-01-08 Atsushi Enomoto <[email protected]>

	* XmlAttribute.cs, XmlElement.cs :
	  Fixed incorrect protected .ctor modification.

svn path=/trunk/mcs/; revision=21836
Atsushi Eno 22 år sedan
förälder
incheckning
e66ea433af

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

@@ -1,3 +1,8 @@
+2004-01-08  Atsushi Enomoto  <[email protected]>
+
+	* XmlAttribute.cs, XmlElement.cs : 
+	  Fixed incorrect protected .ctor modification.
+
 2004-01-08  Nick Drochak <[email protected]>
 
 	* DTDValidatingReader.cs: Removed unused variable

+ 8 - 0
mcs/class/System.XML/System.Xml/XmlAttribute.cs

@@ -31,6 +31,14 @@ namespace System.Xml
 		#region Constructor
 
 		protected internal XmlAttribute (
+			string prefix, 
+			string localName, 
+			string namespaceURI,
+			XmlDocument doc) : this (prefix, localName, namespaceURI, doc, false)
+		{
+		}
+
+		internal XmlAttribute (
 			string prefix, 
 			string localName, 
 			string namespaceURI,

+ 8 - 0
mcs/class/System.XML/System.Xml/XmlElement.cs

@@ -33,6 +33,14 @@ namespace System.Xml
 		#region Constructor
 
 		protected internal XmlElement (
+			string prefix, 
+			string localName, 
+			string namespaceURI, 
+			XmlDocument doc) : this (prefix, localName, namespaceURI, doc, false)
+		{
+		}
+
+		internal XmlElement (
 			string prefix, 
 			string localName, 
 			string namespaceURI,