فهرست منبع

2006-01-25 Atsushi Enomoto <[email protected]>

	* XsltContext.cs : fixed method signatures found by updated
	  corcompare.


svn path=/trunk/mcs/; revision=56047
Atsushi Eno 20 سال پیش
والد
کامیت
1d4eb101a3
2فایلهای تغییر یافته به همراه7 افزوده شده و 2 حذف شده
  1. 5 0
      mcs/class/System.XML/System.Xml.Xsl/ChangeLog
  2. 2 2
      mcs/class/System.XML/System.Xml.Xsl/XsltContext.cs

+ 5 - 0
mcs/class/System.XML/System.Xml.Xsl/ChangeLog

@@ -1,3 +1,8 @@
+2006-01-25  Atsushi Enomoto  <[email protected]>
+
+	* XsltContext.cs : fixed method signatures found by updated
+	  corcompare.
+
 2005-12-23  Gert Driesen  <[email protected]>
 
 	* IXsltContextFunction.cs: Fixed line endings (all CRLF).

+ 2 - 2
mcs/class/System.XML/System.Xml.Xsl/XsltContext.cs

@@ -33,12 +33,12 @@ namespace System.Xml.Xsl
 	public abstract class XsltContext : XmlNamespaceManager
 	{
 		#region Constructors
-		public XsltContext ()
+		protected XsltContext ()
 			: base (new NameTable ())
 		{
 		}
 
-		public XsltContext (NameTable table)
+		protected XsltContext (NameTable table)
 			: base (table)
 		{
 		}