2003-02-19 Daniel Morgan <danmorg@sc.rr.com>
authorDaniel Morgan <monodanmorg@yahoo.com>
Wed, 19 Feb 2003 07:06:50 +0000 (07:06 -0000)
committerDaniel Morgan <monodanmorg@yahoo.com>
Wed, 19 Feb 2003 07:06:50 +0000 (07:06 -0000)
* InternalDataCollectionBase.cs: revert change to field
to fix build

* DataViewManager.cs
* DataView.cs
* DataTable.cs
* DataSet.cs: commented use of DesignerAttribute
because it broke the build.  According to MSDN,
DesignerAttribute does not have a zero-argument constructor

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

mcs/class/System.Data/System.Data/ChangeLog
mcs/class/System.Data/System.Data/DataSet.cs
mcs/class/System.Data/System.Data/DataTable.cs
mcs/class/System.Data/System.Data/DataView.cs
mcs/class/System.Data/System.Data/DataViewManager.cs
mcs/class/System.Data/System.Data/InternalDataCollectionBase.cs

index a0c788721bccaa213c719330c29715de99065e92..aa6d999c7b3ff379ffd3aef14e300ace4f77dbc1 100644 (file)
@@ -1,3 +1,15 @@
+2003-02-19  Daniel Morgan <danmorg@sc.rr.com>
+
+       * InternalDataCollectionBase.cs: revert change to field
+       to fix build
+       
+       * DataViewManager.cs
+       * DataView.cs
+       * DataTable.cs
+       * DataSet.cs: commented use of DesignerAttribute
+       because it broke the build.  According to MSDN,
+       DesignerAttribute does not have a zero-argument constructor
+
 2003-02-18  Ville Palo <vi64pa@kolumbus.fi>
 
        * DataColumnCollectin.cs: Little fix for indexer and case sensitivity
index e75b53494c0385f16aaa574633647c091fdf4792..210a40065fbbc66b08418c43c58df7be520f67aa 100644 (file)
@@ -27,7 +27,7 @@ namespace System.Data {
        /// <summary>
        /// an in-memory cache of data 
        /// </summary>
-       [Designer]
+       //[Designer]
        [ToolboxItem (false)]
        [DefaultProperty ("DataSetName")]
        [Serializable]
index 7923a1f83552d84361824312c8deead213c78f7f..6edfbea2883bb0388fc1a008edcaf16c16f04cb1 100644 (file)
@@ -21,7 +21,7 @@ using System.Globalization;
 using System.Runtime.Serialization;
 
 namespace System.Data {
-       [Designer]
+       //[Designer]
        [ToolboxItem (false)]
        [DefaultEvent ("RowChanging")]
        [DefaultProperty ("TableName")]
index ed48326369fbae01284f89dbd7e4a239bf7e4621..b616df16bb6e1e86d39369ef40453aed5d2571d7 100644 (file)
@@ -21,7 +21,7 @@ namespace System.Data {
        /// a view of a DataTable for editing, filtering,
        /// navigation, searching, and sorting.
        /// </summary>
-       [Designer]
+       //[Designer]
        [Editor]
        [DefaultEvent ("PositionChanged")]
        [DefaultProperty ("Table")]
index bf935c1560e6fef7af099b7d30866e5deb61ebee..a6c2a2a2f940198ca3abc3f996affbd4781a1fdb 100644 (file)
@@ -18,7 +18,7 @@ namespace System.Data
        /// <summary>
        /// Contains a default DataViewSettingCollection for each DataTable in a DataSet.
        /// </summary>
-       [Designer]
+       //[Designer]
        public class DataViewManager : MarshalByValueComponent, IBindingList, ICollection, IList, ITypedList, IEnumerable
        {
                #region Fields
index d8d2baad3df34717a0f2215878463d23decd56d1..091d7f98ba4316701ffa2a1f79adb16ffc8fecdb 100644 (file)
@@ -33,7 +33,8 @@ namespace System.Data
        {
                #region Fields
 
-               private ArrayList list = null;
+               // FIXME: keep list protected until mcs/mono is fixed
+               protected ArrayList list = null;
                private bool readOnly = false;
                private bool synchronized = false;