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:
authorChris Toshok <toshok@novell.com>2006-12-19 20:28:39 +0300
committerChris Toshok <toshok@novell.com>2006-12-19 20:28:39 +0300
commitce3848edb2f350200c9d77948acdebc67dab4af2 (patch)
tree20dbefc00f15b6d04525a25bd59783dc9b4283c3 /mcs/class/System.Design/System.Windows.Forms.Design
parent44bd013a0875ad5ec322e05338f789a4ca46ef9c (diff)
In .:
* System.Design.dll.sources: add DataSourceConverter.cs and DataMemberFieldConverter. In System.Windows.Forms.Design: * DataMemberFieldConverter.cs: another empty stub class. svn path=/trunk/mcs/; revision=69760
Diffstat (limited to 'mcs/class/System.Design/System.Windows.Forms.Design')
-rw-r--r--mcs/class/System.Design/System.Windows.Forms.Design/ChangeLog2
-rw-r--r--mcs/class/System.Design/System.Windows.Forms.Design/DataMemberFieldConverter.cs37
2 files changed, 39 insertions, 0 deletions
diff --git a/mcs/class/System.Design/System.Windows.Forms.Design/ChangeLog b/mcs/class/System.Design/System.Windows.Forms.Design/ChangeLog
index af824120616..41bf354ceea 100644
--- a/mcs/class/System.Design/System.Windows.Forms.Design/ChangeLog
+++ b/mcs/class/System.Design/System.Windows.Forms.Design/ChangeLog
@@ -1,5 +1,7 @@
2006-12-19 Chris Toshok <toshok@ximian.com>
+ * DataMemberFieldConverter.cs: another empty stub class.
+
* DataSourceConverter.cs: new empty stub class to keep
ControlInspector from crashing.
diff --git a/mcs/class/System.Design/System.Windows.Forms.Design/DataMemberFieldConverter.cs b/mcs/class/System.Design/System.Windows.Forms.Design/DataMemberFieldConverter.cs
new file mode 100644
index 00000000000..0780cfdccb9
--- /dev/null
+++ b/mcs/class/System.Design/System.Windows.Forms.Design/DataMemberFieldConverter.cs
@@ -0,0 +1,37 @@
+//
+// System.Windows.Forms.Design.DataMemberFieldConverter.cs
+//
+// (C) 2006 Novell, Inc. http://www.novell.com
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System;
+using System.ComponentModel;
+
+namespace System.Windows.Forms.Design {
+
+ // XXX this is just a stub class to keep things from crashing when a property grid is used on a control.
+ internal class DataMemberFieldConverter : TypeConverter {
+ }
+
+}