浏览代码

2002-05-10 Duncan Mak <[email protected]>

	* ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection.

	* Page.cs (Validators): return type should be ValidatorCollection,
	not ValidatedCollection.

svn path=/trunk/mcs/; revision=4492
Duncan Mak 23 年之前
父节点
当前提交
b82629004d

+ 5 - 0
mcs/class/System.Web/System.Web.UI/ChangeLog

@@ -1,5 +1,10 @@
 2002-05-10  Duncan Mak  <[email protected]>
 2002-05-10  Duncan Mak  <[email protected]>
 
 
+	* ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection. 
+
+	* Page.cs (Validators): return type should be ValidatorCollection,
+	not ValidatedCollection.
+
 	* TagPrefixAttribute.cs: Added to CVS.
 	* TagPrefixAttribute.cs: Added to CVS.
 
 
 2002-05-07  Duncan Mak  <[email protected]>
 2002-05-07  Duncan Mak  <[email protected]>

+ 1 - 1
mcs/class/System.Web/System.Web.UI/Page.cs

@@ -157,7 +157,7 @@ namespace System.Web.UI {
 			get { throw new NotImplementedException (); }
 			get { throw new NotImplementedException (); }
 		}
 		}
 
 
-		public ValidatedCollection Validators {
+		public ValidatorCollection Validators {
 			get { throw new NotImplementedException (); }
 			get { throw new NotImplementedException (); }
 		}
 		}
 
 

+ 2 - 2
mcs/class/System.Web/System.Web.UI/ValidatorCollection.cs

@@ -10,10 +10,10 @@ using System.Collections;
 
 
 namespace System.Web.UI {
 namespace System.Web.UI {
 
 
-	public sealed class ValidatedCollection : ICollection, IEnumerable
+	public sealed class ValidatorCollection : ICollection, IEnumerable
 	{
 	{
 
 
-		public ValidatedCollection ()
+		public ValidatorCollection ()
 		{
 		{
 		}
 		}