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:
authorAndreas N <andreas@mono-cvs.ximian.com>2003-11-13 22:30:06 +0300
committerAndreas N <andreas@mono-cvs.ximian.com>2003-11-13 22:30:06 +0300
commitccf287dc0493e79975364f739a212282bb13114c (patch)
treea4ae3af00ec40d11338408972da3e07dca0f2881 /mcs/class/System/System.ComponentModel
parentac122271f9deb2e559613c68cfb1f5773656c3aa (diff)
2003-11-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* IComponent.cs: Added missing attribute svn path=/trunk/mcs/; revision=19954
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.cs1
2 files changed, 5 insertions, 0 deletions
diff --git a/mcs/class/System/System.ComponentModel/ChangeLog b/mcs/class/System/System.ComponentModel/ChangeLog
index 114164a593b..306b47b1211 100644
--- a/mcs/class/System/System.ComponentModel/ChangeLog
+++ b/mcs/class/System/System.ComponentModel/ChangeLog
@@ -1,3 +1,7 @@
+2003-11-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+ * IComponent.cs: Added missing attribute
+
2003-11-12 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* ComponentResourceManager.cs: Added and partially implemented
diff --git a/mcs/class/System/System.ComponentModel/IComponent.cs b/mcs/class/System/System.ComponentModel/IComponent.cs
index e430196a884..3a42fe2be14 100644
--- a/mcs/class/System/System.ComponentModel/IComponent.cs
+++ b/mcs/class/System/System.ComponentModel/IComponent.cs
@@ -17,6 +17,7 @@ using System.ComponentModel.Design.Serialization;
namespace System.ComponentModel
{
[ComVisible (true), TypeConverter (typeof (System.ComponentModel.ComponentConverter))]
+ [Designer ("System.Windows.Forms.Design.ComponentDocumentDesigner, " + Consts.AssemblySystem_Design, typeof (IDesigner))]
[Designer ("System.Windows.Forms.Design.ComponentDocumentDesigner, " + Consts.AssemblySystem_Design, typeof (IRootDesigner))]
[RootDesignerSerializer ("System.ComponentModel.Design.Serialization.RootCodeDomSerializer, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design, true)]
public interface IComponent : IDisposable