2002-02-26 Duncan Mak <duncan@ximian.com>
authorDuncan Mak <duncan@mono-cvs.ximian.com>
Tue, 26 Feb 2002 01:48:08 +0000 (01:48 -0000)
committerDuncan Mak <duncan@mono-cvs.ximian.com>
Tue, 26 Feb 2002 01:48:08 +0000 (01:48 -0000)
* XmlDocumentType.cs: Added a few hacks here and there to
temporarily fix the "I broke the build issue".

svn path=/trunk/mcs/; revision=2660

mcs/class/System.XML/System.Xml/ChangeLog
mcs/class/System.XML/System.Xml/XmlDocumentType.cs
mcs/class/System.XML/System.Xml/XmlImplementation.cs

index c9ef085e97387e280e62c0fc5889ecdeac340d1a..cf827c0140ca847611ae522d03bb8c23b108cb17 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-26  Duncan Mak  <duncan@ximian.com>
+
+       * XmlDocumentType.cs: Added a few hacks here and there to
+       temporarily fix the "I broke the build issue".
+
 2002-02-25  Jason Diamond <jason@injektilo.org>
 
        * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
index fbd882367e7027a0385b3b4697b0e97fe8f2e10e..f0b2a96f24347321c8d86eb34df084bee10e2625 100644 (file)
@@ -8,7 +8,7 @@
 \r
 namespace System.Xml\r
 {\r
-       public class XmlDocumentType : XmlLinkedNode\r
+       public class XmlDocumentType  : XmlLinkedNode\r
        {\r
                // Fields\r
                string name;            // name of the document type\r
@@ -17,10 +17,10 @@ namespace System.Xml
                string internalSubset;  // value of the DTD internal subset\r
                XmlDocument document;\r
                \r
-               // Constructor                  \r
+               // Constructor\r
                protected internal XmlDocumentType (string name, string publicId, string systemId,\r
                                                    string internalSubset, XmlDocument doc)\r
-                       : base ()                                                   \r
+                       : base (null)                                               \r
                {\r
                        this.name = name;\r
                        this.publicId = publicId;\r
index c76875d30bc6982c89b669aab7030e4d63a8949a..7c688660a4520d750b043fa5d7badf3851930afe 100644 (file)
@@ -15,9 +15,11 @@ namespace System.Xml
                {\r
                }\r
 \r
+               [MonoTODO]\r
                public virtual XmlDocument CreateDocument ()\r
                {\r
-                       return new XmlDocument (this);\r
+                       // return new XmlDocument (this);\r
+                       return null;\r
                }\r
 \r
                public bool HasFeature (string strFeature, string strVersion)\r