Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Laban <jerome@mono-cvs.ximian.com>2003-07-14 13:51:39 +0400
committerJerome Laban <jerome@mono-cvs.ximian.com>2003-07-14 13:51:39 +0400
commitba7287d57d9a92847e741861fac4cf574c39779c (patch)
tree53011aa1a2fc5c2c65399492344222d9aed87645 /mcs/class/System/System.ComponentModel
parentf7fa3bb22e2161473da982410c211599b53ce382 (diff)
2003-07-14 Jerome Laban <jlaban@wanadoo.fr>
* IComponent.cs: Removed duplicate Designer attribute. svn path=/trunk/mcs/; revision=16192
Diffstat (limited to 'mcs/class/System/System.ComponentModel')
-rw-r--r--mcs/class/System/System.ComponentModel/ChangeLog4
-rw-r--r--mcs/class/System/System.ComponentModel/IComponent.cs2
2 files changed, 4 insertions, 2 deletions
diff --git a/mcs/class/System/System.ComponentModel/ChangeLog b/mcs/class/System/System.ComponentModel/ChangeLog
index 98c8dc3df79..71ba2b09b71 100644
--- a/mcs/class/System/System.ComponentModel/ChangeLog
+++ b/mcs/class/System/System.ComponentModel/ChangeLog
@@ -1,3 +1,7 @@
+2003-07-14 Jerome Laban <jlaban@wanadoo.fr>
+
+ * IComponent.cs: Removed duplicate Designer attribute.
+
2003-07-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* Component.cs: Implementation added
diff --git a/mcs/class/System/System.ComponentModel/IComponent.cs b/mcs/class/System/System.ComponentModel/IComponent.cs
index 77b22295fbe..c097bd35aff 100644
--- a/mcs/class/System/System.ComponentModel/IComponent.cs
+++ b/mcs/class/System/System.ComponentModel/IComponent.cs
@@ -19,12 +19,10 @@ namespace System.ComponentModel
[ComVisible (true), TypeConverter (typeof (System.ComponentModel.ComponentConverter))]
#if (NET_1_0)
[Designer ("System.Windows.Forms.Design.ComponentDocumentDesigner, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (IRootDesigner)),
- Designer ("System.Componentmodel.Design.ComponentDesigner, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (IDesigner)),
RootDesignerSerializer ("System.ComponentModel.Design.Serialization.RootCodeDomSerializer, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", true)]
#endif
#if (NET_1_1)
[Designer ("System.Windows.Forms.Design.ComponentDocumentDesigner, System.Design, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (IRootDesigner)),
- Designer ("System.Componentmodel.Design.ComponentDesigner, System.Design, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (IDesigner)),
RootDesignerSerializer ("System.ComponentModel.Design.Serialization.RootCodeDomSerializer, System.Design, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", true)]
#endif
public interface IComponent : IDisposable