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-08-26 23:57:28 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-08-26 23:57:28 +0400
commitfb235e91a6af1d03f2e185d29f9933c6b7bc7527 (patch)
tree0147b49dd7b67a7e74b1ada97d1eb28a77c65358 /mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs
parent8afd58d894267f1ec5687a44b5b28a0bf7084e1d (diff)
2003-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we need to pass true here. Fixes bug #47918. svn path=/trunk/mcs/; revision=17635
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs
index bd5c1432efb..ca8940adb1d 100644
--- a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs
+++ b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlGenericControl.cs
@@ -16,7 +16,7 @@ using System.Web.UI;
namespace System.Web.UI.HtmlControls{
- [ConstructorNeedsTag]
+ [ConstructorNeedsTag(true)]
public class HtmlGenericControl : HtmlContainerControl {
public HtmlGenericControl() :
this ("span")