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>2005-05-05 15:14:55 +0400
committerAtsushi Eno <atsushieno@gmail.com>2005-05-05 15:14:55 +0400
commitc75eb91733812605a985954701c9987e4e057a79 (patch)
tree122f3a63c389bc5de832ae29ff1444d22d6ed458 /mcs/class/System.XML/Mono.Xml.XPath
parent97bbdf138c593811a3df6ccbb3f6570c9ebb1fce (diff)
2005-05-05 Atsushi Enomoto <atsushi@ximian.com>
* XPathEditableDocument.cs : sync with updated 2.0 API. svn path=/trunk/mcs/; revision=44075
Diffstat (limited to 'mcs/class/System.XML/Mono.Xml.XPath')
-rw-r--r--mcs/class/System.XML/Mono.Xml.XPath/ChangeLog4
-rwxr-xr-xmcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs4
2 files changed, 6 insertions, 2 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog b/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog
index 19dcdd56f0b..cf99b3def62 100644
--- a/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog
+++ b/mcs/class/System.XML/Mono.Xml.XPath/ChangeLog
@@ -1,3 +1,7 @@
+2005-05-05 Atsushi Enomoto <atsushi@ximian.com>
+
+ * XPathEditableDocument.cs : sync with updated 2.0 API.
+
2005-03-22 Atsushi Enomoto <atsushi@ximian.com>
* DTMXPathDocumentWriter2.cs : use index for string pool.
diff --git a/mcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs b/mcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs
index b41bb5511d1..48d632e5655 100755
--- a/mcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs
+++ b/mcs/class/System.XML/Mono.Xml.XPath/XPathEditableDocument.cs
@@ -764,12 +764,12 @@ namespace Mono.Xml.XPath
return document.CreateInsertionWriter (n, null);
}
- public override bool DeleteSelf ()
+ public override void DeleteSelf ()
{
XmlNode n = ((IHasXmlNode) navigator).GetNode ();
if (!navigator.MoveToNext ())
navigator.MoveToParent ();
- return document.DeleteNode (n);
+ document.DeleteNode (n);
}
public override void SetValue (string value)