Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2003-05-23 20:38:07 +0400
committerAtsushi Eno <atsushieno@gmail.com>2003-05-23 20:38:07 +0400
commit7ff3fe6a23517bdb54884fe684f5c35a8354f42c (patch)
treecf8a2aeef7238fd4de6ccf7e7a92c7cfbfae875c /mcs/class/System.XML/System.Xml/XmlCharacterData.cs
parent8efe1dfbd074a09a943c319a3806d091f5e5051e (diff)
2003-05-24 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlAttribute.cs, XmlCharacterData.cs, XmlComment.cs, XmlDocument.cs, XmlDocumentFragment.cs, XmlElement.cs, XmlEntity.cs, XmlLinkedNode.cs, XmlNode.cs, XmlNotation.cs, XmlProcessingInstruction.cs, XmlReader.cs, XmlSignificantWhitespace.cs, XmlText.cs, XmlWhitespace.cs: Reverted the recent accessibility mistake (5/16). * XmlDocument.cs, XmlNode.cs : moved actual CreateNavigator() logic from XmlNode to XmlDocument. svn path=/trunk/mcs/; revision=14836
Diffstat (limited to 'mcs/class/System.XML/System.Xml/XmlCharacterData.cs')
-rw-r--r--mcs/class/System.XML/System.Xml/XmlCharacterData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlCharacterData.cs b/mcs/class/System.XML/System.Xml/XmlCharacterData.cs
index 6a55a073469..cc1be4c3e98 100644
--- a/mcs/class/System.XML/System.Xml/XmlCharacterData.cs
+++ b/mcs/class/System.XML/System.Xml/XmlCharacterData.cs
@@ -65,7 +65,7 @@ namespace System.Xml
}
}
- internal protected override XPathNodeType XPathNodeType {
+ internal override XPathNodeType XPathNodeType {
get { return XPathNodeType.Text; }
}