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
path: root/mcs
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2005-02-02 19:25:31 +0300
committerLluis Sanchez <lluis@novell.com>2005-02-02 19:25:31 +0300
commit150d25d1b5e53c6513a33fcd9a9befa5ae51da11 (patch)
treee6f30d354e12fc65ed97d8802d6bc835f8bedf10 /mcs
parent300c4162b7f492dc7d841a7b685be8fda0017b00 (diff)
2005-02-02 Lluis Sanchez Gual <lluis@novell.com>
* ControlPropertyNameConverter.cs: Added file. svn path=/trunk/mcs/; revision=39995
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog4
-rw-r--r--mcs/class/System.Web/System.Web.UI.WebControls/ControlPropertyNameConverter.cs42
2 files changed, 46 insertions, 0 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog b/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog
index d6cee66958b..bdebdd6d289 100644
--- a/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog
+++ b/mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog
@@ -1,3 +1,7 @@
+2005-02-02 Lluis Sanchez Gual <lluis@novell.com>
+
+ * ControlPropertyNameConverter.cs: Added file.
+
2005-02-02 Lluis Sanchez Gual <lluis@novell.com>
* Button.cs, MonthChangedEventArgs.cs, FontInfo.cs, Xml.cs, Style.cs,
diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/ControlPropertyNameConverter.cs b/mcs/class/System.Web/System.Web.UI.WebControls/ControlPropertyNameConverter.cs
new file mode 100644
index 00000000000..7a418585e56
--- /dev/null
+++ b/mcs/class/System.Web/System.Web.UI.WebControls/ControlPropertyNameConverter.cs
@@ -0,0 +1,42 @@
+//
+// System.Web.UI.WebControls.ControlPropertyNameConverter.cs
+//
+// Authors:
+// Lluis Sanchez Gual (lluis@novell.com)
+//
+// (C) 2005 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.
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+
+#if NET_2_0
+
+using System.ComponentModel;
+
+namespace System.Web.UI.WebControls
+{
+ public class ControlPropertyNameConverter: StringConverter
+ {
+ }
+}
+
+#endif