2004-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 13 Apr 2004 10:29:44 +0000 (10:29 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 13 Apr 2004 10:29:44 +0000 (10:29 -0000)
* DataTable.cs: made _initStatus private so that System.Data is CLS
compliant.

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

mcs/class/System.Data/System.Data/ChangeLog
mcs/class/System.Data/System.Data/DataTable.cs

index 1f3ec026952f8e78a051e7afbcc2b6cfd08ad1ab..bd4dad29a1a8d5fc0b4ae25e55dfcede02d39a13 100644 (file)
@@ -1,9 +1,22 @@
+2004-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * DataTable.cs: made _initStatus private so that System.Data is CLS
+       compliant.
+
 2004-04-13 Umadevi S   <sumadevi@novell.com>
-       *  UniqueConstraint.cs
-       *  ConstraintCollection.cs
-       *  DataTable.cs
+       *  UniqueConstraint.cs:
+       *  ConstraintCollection.cs:
+       *  DataTable.cs:
        - Implemented a Constructor for UniqueConstraint.cs
-       - Used  EndInit on DataTable  to call a delegate which adds the constraints passed to the most recent call of AddRange().Used AddRange() on ConstraintCollection to check whether DataTable.BeginInit has occurred.  If yes, save the argument  constraint collection passed, then return.  If no, Check whether the constraints are of type UniqueConstraint and initialized with the special constructor  If yes Initialized the table property of this UniqueConstraint object with table assosciated with the current instance of ConstraintCollection class.
+       - Used  EndInit on DataTable  to call a delegate which adds the
+         constraints passed to the most recent call of AddRange().Used
+         AddRange() on ConstraintCollection to check whether
+         DataTable.BeginInit has occurred.  If yes, save the argument
+         constraint collection passed, then return.  If no, Check whether the
+         constraints are of type UniqueConstraint and initialized with the
+         special constructor  If yes Initialized the table property of this
+         UniqueConstraint object with table assosciated with the current
+         instance of ConstraintCollection class.
 
 2004-04-07  Marek Safar  <marek.safar@seznam.cz>
 
index 730d903e8a5c4ba66634ec7f6851dfcfcaaf6475..283bcd8237a6c0c6db8b05a9aab1c62e5e11ac2e 100644 (file)
@@ -76,7 +76,7 @@ namespace System.Data {
                 /// </summary>
                 public enum initStatus { NotInitialized, BeginInit, EndInit };
         
-               public initStatus _initStatus;
+               private initStatus _initStatus;
         
                private delegate void PostEndInit();