* XmlAttribute.cs, XmlElement.cs : Fixed incorrect protected .ctor modification. svn path=/trunk/mcs/; revision=21836
@@ -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
@@ -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,
@@ -33,6 +33,14 @@ namespace System.Xml
protected internal XmlElement (
+ internal XmlElement (