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:
authorMiguel de Icaza <miguel@gnome.org>2006-02-28 00:39:24 +0300
committerMiguel de Icaza <miguel@gnome.org>2006-02-28 00:39:24 +0300
commit57fbaa058bc5806970bc9b2c1fd06398008ba3d4 (patch)
tree9921679d52a21aaa3a0188c8104eeaa7317b6998
parent3e620e6a87e53dd00c496e17e2ae0bfd3974d86f (diff)
Only in 2.0
svn path=/trunk/mcs/; revision=57356
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/ColumnStyle.cs2
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutEngine.cs2
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutSettings.cs2
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/RowStyle.cs3
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/SizeType.cs3
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayout.cs2
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanel.cs2
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanelGrowStyle.cs3
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutSettings.cs2
9 files changed, 18 insertions, 3 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ColumnStyle.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ColumnStyle.cs
index a2f0fc1e340..fe6f87b41c0 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ColumnStyle.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ColumnStyle.cs
@@ -24,6 +24,7 @@
// (C) 2004 Novell, Inc.
//
+#if NET_2_0
namespace System.Windows.Forms {
public class ColumnStyle : TableLayoutSettings.Style {
@@ -55,3 +56,4 @@ namespace System.Windows.Forms {
}
}
}
+#endif
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutEngine.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutEngine.cs
index 1d8a23e0f1a..8f58577f9b4 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutEngine.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutEngine.cs
@@ -23,6 +23,7 @@
//
// (C) 2004 Novell, Inc.
//
+#if NET_2_0
using System;
using System.ComponentModel;
@@ -41,3 +42,4 @@ namespace System.Windows.Forms.Layout {
}
}
+#endif
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutSettings.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutSettings.cs
index 3fbded33d91..84c96235535 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutSettings.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LayoutSettings.cs
@@ -23,6 +23,7 @@
//
// (C) 2004 Novell, Inc.
//
+#if NET_2_0
using System;
using System.ComponentModel;
using System.Windows.Forms.Layout;
@@ -37,3 +38,4 @@ namespace System.Windows.Forms {
}
}
}
+#endif
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/RowStyle.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/RowStyle.cs
index 83e1f49d29d..c8e4ba1d120 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/RowStyle.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/RowStyle.cs
@@ -23,7 +23,7 @@
//
// (C) 2004 Novell, Inc.
//
-
+#if NET_2_0
namespace System.Windows.Forms {
public class RowStyle : TableLayoutSettings.Style {
@@ -55,3 +55,4 @@ namespace System.Windows.Forms {
}
}
}
+#endif
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SizeType.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SizeType.cs
index 7fcb66e22a5..464dcea3390 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SizeType.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SizeType.cs
@@ -23,7 +23,7 @@
//
// (C) 2004 Novell, Inc.
//
-
+#if NET_2_0
namespace System.Windows.Forms {
public enum SizeType {
AutoSize = 0,
@@ -31,3 +31,4 @@ namespace System.Windows.Forms {
Percent = 2
}
}
+#endif
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayout.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayout.cs
index 05fb95b2a7b..8065e61e253 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayout.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayout.cs
@@ -23,6 +23,7 @@
//
// (C) 2004 Novell, Inc.
//
+#if NET_2_0
using System;
using System.ComponentModel;
using System.Windows.Forms.Layout;
@@ -41,3 +42,4 @@ namespace System.Windows.Forms {
}
}
}
+#endif
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanel.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanel.cs
index 780fcd9e193..005736fa1bb 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanel.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanel.cs
@@ -23,6 +23,7 @@
//
// (C) 2004 Novell, Inc.
//
+#if NET_2_0
using System;
using System.ComponentModel;
@@ -83,3 +84,4 @@ namespace System.Windows.Forms {
#endregion
}
}
+#endif
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanelGrowStyle.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanelGrowStyle.cs
index 1c50a7ab936..7a3593c1f88 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanelGrowStyle.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutPanelGrowStyle.cs
@@ -23,7 +23,7 @@
//
// (C) 2004 Novell, Inc.
//
-
+#if NET_2_0
namespace System.Windows.Forms {
public enum TableLayoutPanelGrowStyle {
FixedSize,
@@ -31,3 +31,4 @@ namespace System.Windows.Forms {
AddColumns,
}
}
+#endif
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutSettings.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutSettings.cs
index c9657c595d6..cd48738c2bc 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutSettings.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TableLayoutSettings.cs
@@ -23,6 +23,7 @@
//
// (C) 2004 Novell, Inc.
//
+#if NET_2_0
using System;
using System.ComponentModel;
using System.Collections;
@@ -204,3 +205,4 @@ namespace System.Windows.Forms {
}
}
+#endif