From 150d25d1b5e53c6513a33fcd9a9befa5ae51da11 Mon Sep 17 00:00:00 2001 From: Lluis Sanchez Date: Wed, 2 Feb 2005 16:25:31 +0000 Subject: 2005-02-02 Lluis Sanchez Gual * ControlPropertyNameConverter.cs: Added file. svn path=/trunk/mcs/; revision=39995 --- .../System.Web/System.Web.UI.WebControls/ChangeLog | 4 +++ .../ControlPropertyNameConverter.cs | 42 ++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 mcs/class/System.Web/System.Web.UI.WebControls/ControlPropertyNameConverter.cs (limited to 'mcs') 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 + + * ControlPropertyNameConverter.cs: Added file. + 2005-02-02 Lluis Sanchez Gual * 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 -- cgit v1.2.3