Просмотр исходного кода

2002-10-07 Gonzalo Paniagua Javier <[email protected]>

* System.Data/ConstraintCollection.cs:
* System.Data/DataColumnCollection.cs:
* System.Data/DataRowCollection.cs:
* System.Data/DataTableCollection.cs:
* System.Data/InternalDataCollectionBase.cs: made List internal to fix
the build with csc. It must be a mcs bug. I will try to get a test case.

svn path=/trunk/mcs/; revision=8050

Gonzalo Paniagua Javier 23 лет назад
Родитель
Сommit
cd0a46ebec

+ 9 - 0
mcs/class/System.Data/ChangeLog

@@ -1,3 +1,12 @@
+2002-10-07  Gonzalo Paniagua Javier <[email protected]>
+
+	* System.Data/ConstraintCollection.cs:
+	* System.Data/DataColumnCollection.cs:
+	* System.Data/DataRowCollection.cs:
+	* System.Data/DataTableCollection.cs:
+	* System.Data/InternalDataCollectionBase.cs: made List internal to fix
+	the build with csc. It must be a mcs bug. I will try to get a test case.
+
 2002-10-06  Luis Fernandez <[email protected]>
 
 	* System.Data/Constraint.cs (AssertConstraint): added overloaded

+ 1 - 1
mcs/class/System.Data/System.Data/ConstraintCollection.cs

@@ -315,7 +315,7 @@ namespace System.Data
 		}
 
 
-		protected override ArrayList List {
+		protected internal override ArrayList List {
 			get{
 				return base.List;
 			}

+ 1 - 1
mcs/class/System.Data/System.Data/DataColumnCollection.cs

@@ -71,7 +71,7 @@ namespace System.Data
 		/// <summary>
 		/// Gets a list of the DataColumnCollection items.
 		/// </summary>
-		protected override ArrayList List 
+		protected internal override ArrayList List 
 		{
 			get
 			{

+ 1 - 1
mcs/class/System.Data/System.Data/DataRowCollection.cs

@@ -42,7 +42,7 @@ namespace System.Data
 		/// <summary>
 		/// This member overrides InternalDataCollectionBase.List
 		/// </summary>
-		protected override ArrayList List 
+		protected internal override ArrayList List 
 		{
 			get { return list; }
 		}		

+ 1 - 1
mcs/class/System.Data/System.Data/DataTableCollection.cs

@@ -50,7 +50,7 @@ namespace System.Data
 			get { return (DataTable)(tables[name]); }
 		}
 
-		protected override ArrayList List {
+		protected internal override ArrayList List {
 			get { return list; }
 		}
 

+ 1 - 1
mcs/class/System.Data/System.Data/InternalDataCollectionBase.cs

@@ -75,7 +75,7 @@ namespace System.Data
 		/// <summary>
 		/// Gets the items of the collection as a list.
 		/// </summary>
-		protected virtual ArrayList List {
+		protected internal virtual ArrayList List {
 			get { return list; }
 		}