Skip to content

Commit

Permalink
2002-05-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Browse files Browse the repository at this point in the history
	* ValidationPropertyAttribute.cs: a couple of fixes to make it compile.

svn path=/trunk/mcs/; revision=4655
  • Loading branch information
gonzalop committed May 15, 2002
1 parent c680c59 commit e498eb1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions mcs/class/System.Web/System.Web.UI/ChangeLog
@@ -1,3 +1,7 @@
2002-05-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* ValidationPropertyAttribute.cs: a couple of fixes to make it compile.

2002-05-14 Duncan Mak <duncan@ximian.com>

* ValidationPropertyAttribute.cs: Added to CVS.
Expand Down
Expand Up @@ -9,7 +9,7 @@
using System;

namespace System.Web.UI {
[AttributeUsage (AttributeTarget.Class)]
[AttributeUsage (AttributeTargets.Class)]
public sealed class ValidationPropertyAttribute : Attribute
{
string name;
Expand All @@ -19,7 +19,7 @@ public ValidationPropertyAttribute (string name)
this.name = name;
}

public override string Name {
public string Name {
get { return name; }
}
}
Expand Down

0 comments on commit e498eb1

Please sign in to comment.