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-01-17 12:49:35 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-01-17 12:49:35 +0300
commita3b017f60a3bf30920b2aea3527da9d57f0abc3b (patch)
treeb46b902bbb18367296c375bae4670f4b7ab2c386 /mcs/class/System.XML/Mono.Xml.Xsl.Operations
parent782793f81b454440ff712795cf5d9af139e92033 (diff)
2004-01-17 Atsushi Enomoto <atsushi@ximian.com>
* XslVariable.cs : use DTMXPathDocumentWriter2. svn path=/trunk/mcs/; revision=39008
Diffstat (limited to 'mcs/class/System.XML/Mono.Xml.Xsl.Operations')
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog4
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs3
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog
index 67d2e2a94b9..c377c4bae47 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * XslVariable.cs : use DTMXPathDocumentWriter2.
+
2004-11-28 Atsushi Enomoto <atsushi@ximian.com>
* XslVariable.cs : Local param might be overriden by XsltArgumentList.
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs
index 829c6f8b0d1..04a263c57c7 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslVariable.cs
@@ -100,7 +100,8 @@ namespace Mono.Xml.Xsl.Operations {
return o;
} else if (content != null) {
// XmlNodeWriter w = new XmlNodeWriter (false);
- DTMXPathDocumentWriter w = new DTMXPathDocumentWriter (p.CurrentNode.NameTable, 200);
+// DTMXPathDocumentWriter w = new DTMXPathDocumentWriter (p.CurrentNode.NameTable, 200);
+ DTMXPathDocumentWriter2 w = new DTMXPathDocumentWriter2 (p.CurrentNode.NameTable, 200);
Outputter outputter = new GenericOutputter(w, p.Outputs, null, true);
p.PushOutput (outputter);
content.Evaluate (p);