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>2004-04-24 16:06:30 +0400
committerAtsushi Eno <atsushieno@gmail.com>2004-04-24 16:06:30 +0400
commitb2b13b82071719ba6189b63820c609fbeac52c12 (patch)
tree3cc4b8a1ff0d633336ad917bcd9b9be1d37bc253 /mcs/class/System.XML/Mono.Xml.Xsl.Operations
parent07fa5b0f3948c75738b5e35521d32a42df1f50ba (diff)
2004-04-24 Atsushi Enomoto <atsushi@ximian.com>
* XslChoose.cs, XslCopy.cs, XslCopyOf.cs, XslElement.cs XslFallback.cs: missing updates svn path=/trunk/mcs/; revision=25932
Diffstat (limited to 'mcs/class/System.XML/Mono.Xml.Xsl.Operations')
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslChoose.cs2
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopy.cs2
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopyOf.cs2
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslElement.cs2
-rw-r--r--mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslFallback.cs2
5 files changed, 5 insertions, 5 deletions
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslChoose.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslChoose.cs
index 08b8071ca35..ebf31352d38 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslChoose.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslChoose.cs
@@ -16,7 +16,7 @@ using System.Xml.XPath;
using System.Xml.Xsl;
namespace Mono.Xml.Xsl.Operations {
- public class XslChoose : XslCompiledElement {
+ internal class XslChoose : XslCompiledElement {
XslOperation defaultChoice = null;
ArrayList conditions = new ArrayList ();
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopy.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopy.cs
index 0cd30cd16f1..30b2b55a04a 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopy.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopy.cs
@@ -16,7 +16,7 @@ using System.Xml.XPath;
using System.Xml.Xsl;
namespace Mono.Xml.Xsl.Operations {
- public class XslCopy : XslCompiledElement {
+ internal class XslCopy : XslCompiledElement {
XslOperation children;
XmlQualifiedName [] useAttributeSets;
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopyOf.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopyOf.cs
index 71bf98ddca7..dac29a3e8f5 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopyOf.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslCopyOf.cs
@@ -16,7 +16,7 @@ using System.Xml.XPath;
using System.Xml.Xsl;
namespace Mono.Xml.Xsl.Operations {
- public class XslCopyOf : XslCompiledElement {
+ internal class XslCopyOf : XslCompiledElement {
XPathExpression select;
public XslCopyOf (Compiler c) : base (c) {}
protected override void Compile (Compiler c)
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslElement.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslElement.cs
index 181824e25f7..959fa06091c 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslElement.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslElement.cs
@@ -18,7 +18,7 @@ using System.Xml.Xsl;
using QName = System.Xml.XmlQualifiedName;
namespace Mono.Xml.Xsl.Operations {
- public class XslElement : XslCompiledElement {
+ internal class XslElement : XslCompiledElement {
XslAvt name, ns;
string calcName, calcNs, calcPrefix;
XmlNamespaceManager nsm;
diff --git a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslFallback.cs b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslFallback.cs
index 01ff98fcfb6..4f072101267 100644
--- a/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslFallback.cs
+++ b/mcs/class/System.XML/Mono.Xml.Xsl.Operations/XslFallback.cs
@@ -16,7 +16,7 @@ using System.Xml.XPath;
using System.Xml.Xsl;
namespace Mono.Xml.Xsl.Operations {
- public class XslFallback : XslCompiledElement
+ internal class XslFallback : XslCompiledElement
{
XslOperation children;