X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.XML%2FSystem.Xml%2FXmlDocumentType.cs;h=83dbf11c7eaf072516c114862701da768b2f0ced;hb=4477135bd8e477678d3ddaa4b508ff780b9e0a47;hp=c9d3f144c0013cb9060c40c35c2e8ea03bf681e3;hpb=b1b4a4b438c4ec92851df20da82f4481f6901775;p=mono.git diff --git a/mcs/class/System.XML/System.Xml/XmlDocumentType.cs b/mcs/class/System.XML/System.Xml/XmlDocumentType.cs index c9d3f144c00..83dbf11c7ea 100644 --- a/mcs/class/System.XML/System.Xml/XmlDocumentType.cs +++ b/mcs/class/System.XML/System.Xml/XmlDocumentType.cs @@ -17,9 +17,10 @@ namespace System.Xml string internalSubset; // value of the DTD internal subset // Constructor - protected internal XmlDocumentType (string name, string publicId, string systemId, - string internalSubset, XmlDocument doc) - : base (doc) + protected internal XmlDocumentType (string name, string publicId, + string systemId, string internalSubset, + XmlDocument doc) + : base (doc) { this.name = name; this.publicId = publicId; @@ -80,7 +81,8 @@ namespace System.Xml public override XmlNode CloneNode (bool deep) { // deep is ignored - return new XmlDocumentType (name, publicId, systemId, internalSubset, this.OwnerDocument); + return new XmlDocumentType (name, publicId, systemId, + internalSubset, OwnerDocument); } public override void WriteContentTo (XmlWriter w)