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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-06-25 00:45:33 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-06-25 00:45:33 +0400
commitde4b36fff11fcbe17b8988d5492ec5a5e66712d0 (patch)
treebb4abcea49d8baca069e719efe6b3c0623f5eae6 /mcs/class/System/System.ComponentModel
parentd7c7c9ca73dc2d4adbe910c8a8eb99c47e333f9b (diff)
Forgot these
svn path=/trunk/mcs/; revision=15615
Diffstat (limited to 'mcs/class/System/System.ComponentModel')
-rw-r--r--mcs/class/System/System.ComponentModel/IComponent.cs3
-rw-r--r--mcs/class/System/System.ComponentModel/IContainer.cs1
2 files changed, 3 insertions, 1 deletions
diff --git a/mcs/class/System/System.ComponentModel/IComponent.cs b/mcs/class/System/System.ComponentModel/IComponent.cs
index 937f8369d04..588558c01f4 100644
--- a/mcs/class/System/System.ComponentModel/IComponent.cs
+++ b/mcs/class/System/System.ComponentModel/IComponent.cs
@@ -10,13 +10,14 @@
//
using System;
+using System.Runtime.InteropServices;
+using System.ComponentModel.Design.Serialization;
namespace System.ComponentModel
{
[ComVisible (true),
TypeConverter (typeof (System.ComponentModel.ComponentConverter)),
Designer ("System.Windows.Forms.Design.ComponentDocumentDesigner, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (System.ComponentModel.Design.IRootDesigner)),
- Designer ("System.ComponentModel.Design.ComponentDesigner, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (System.ComponentModel.Design.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)]
public interface IComponent : IDisposable
{
diff --git a/mcs/class/System/System.ComponentModel/IContainer.cs b/mcs/class/System/System.ComponentModel/IContainer.cs
index c00e74ce5ca..cee666db8a2 100644
--- a/mcs/class/System/System.ComponentModel/IContainer.cs
+++ b/mcs/class/System/System.ComponentModel/IContainer.cs
@@ -7,6 +7,7 @@
// (C) Ximian, Inc. http://www.ximian.com
//
+using System.Runtime.InteropServices;
namespace System.ComponentModel {
[ComVisible (true)]