2006-01-26 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Wed, 25 Jan 2006 15:36:37 +0000 (15:36 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Wed, 25 Jan 2006 15:36:37 +0000 (15:36 -0000)
* XmlWriter.cs : Dispose() is protected.

* XmlSchemaValidationException.cs : fixed .ctor() signatures.

* XPathNavigator.cs : fixed IsNode signature found by updated
  corcompare.

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

mcs/class/System.XML/System.Xml.Schema/ChangeLog
mcs/class/System.XML/System.Xml.Schema/XmlSchemaValidationException.cs
mcs/class/System.XML/System.Xml.XPath/ChangeLog
mcs/class/System.XML/System.Xml.XPath/XPathNavigator.cs
mcs/class/System.XML/System.Xml/ChangeLog
mcs/class/System.XML/System.Xml/XmlWriter.cs

index 9a53330afbe2a709c2876f37beec34a2aebee57a..3ec48877754d1e78f89343f9f19f665879d48c7f 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-25  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XmlSchemaValidationException.cs : fixed .ctor() signatures.
+
 2006-01-11  Atsushi Enomoto <atsushi@ximian.com>
 
        * XmlSchemaAttribute.cs, XmlSchemaElement.cs : AttributeSchemaType
index 25d41ae7e3a9c4b696efe095ca15f2952e1dcbbe..66f65f0d9fa52e6a577110e52de578dfbe61bcfd 100644 (file)
@@ -42,12 +42,12 @@ namespace System.Xml.Schema
        {
                object source_object;
 
-               protected XmlSchemaValidationException ()
+               public XmlSchemaValidationException ()
                        : base ()
                {
                }
 
-               protected XmlSchemaValidationException (string message)
+               public XmlSchemaValidationException (string message)
                        : base (message)
                {
                }
index ad30973bd0be99eeff2fbf768787aec95b829f02..cc126a551e905b821131cf71085b7a8176608bfd 100644 (file)
@@ -1,3 +1,8 @@
+2006-01-25  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XPathNavigator.cs : fixed IsNode signature found by updated
+         corcompare.
+
 2006-01-11  Atsushi Enomoto <atsushi@ximian.com>
 
        * Iterator.cs : Nowadays removal of cloning of the argument list
index af36dba1aec45f29004024f8b50e3db7889483d3..04caf1dfa515ccbfaecd28a0580aa1e4b1a52a7d 100644 (file)
@@ -900,7 +900,7 @@ namespace System.Xml.XPath
                        }
                }
 
-               public override bool IsNode {
+               public override sealed bool IsNode {
                        get { return true; }
                }
 
index b7b0a138bad9d99c05f3b0de7cea5847c0677bf2..65c87d7cc2ca88b58571b11d6027adcda09fed0c 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-26  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XmlWriter.cs : Dispose() is protected.
+
 2006-01-25  Atsushi Enomoto <atsushi@ximian.com>
 
        * XmlNamedNodeMap.cs : lazily create internal ArrayList. Thanks to
index 0010ce4c0dab60454fdf2977d6692c4c33e134f6..89db0efe82084b53865394a519180c2885fc1b58 100644 (file)
@@ -177,7 +177,7 @@ namespace System.Xml
                        return Create (xtw, settings);
                }
 
-               public virtual void Dispose (bool disposing)
+               protected virtual void Dispose (bool disposing)
                {
                        Close ();
                }