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:
authorMiguel de Icaza <miguel@gnome.org>2003-11-23 02:59:05 +0300
committerMiguel de Icaza <miguel@gnome.org>2003-11-23 02:59:05 +0300
commit4279c0c1ea64e8d83b84482c352e16dce1d7b852 (patch)
tree03cd83278e47c4744bde50864c8fd0ac20badace /mcs/class/System/System.ComponentModel
parent9cf400d3416b62d08bd2f9f71a672088a2c036bd (diff)
2003-11-22 Miguel de Icaza <miguel@ximian.com>
* PropertyTabAttribute.cs (Equals): Avoid recurssion svn path=/trunk/mcs/; revision=20345
Diffstat (limited to 'mcs/class/System/System.ComponentModel')
-rw-r--r--mcs/class/System/System.ComponentModel/ChangeLog4
-rw-r--r--mcs/class/System/System.ComponentModel/PropertyTabAttribute.cs2
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/System/System.ComponentModel/ChangeLog b/mcs/class/System/System.ComponentModel/ChangeLog
index 306b47b1211..241a935db27 100644
--- a/mcs/class/System/System.ComponentModel/ChangeLog
+++ b/mcs/class/System/System.ComponentModel/ChangeLog
@@ -1,3 +1,7 @@
+2003-11-22 Miguel de Icaza <miguel@ximian.com>
+
+ * PropertyTabAttribute.cs (Equals): Avoid recurssion
+
2003-11-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* IComponent.cs: Added missing attribute
diff --git a/mcs/class/System/System.ComponentModel/PropertyTabAttribute.cs b/mcs/class/System/System.ComponentModel/PropertyTabAttribute.cs
index bbc8056de17..b1da465fd1d 100644
--- a/mcs/class/System/System.ComponentModel/PropertyTabAttribute.cs
+++ b/mcs/class/System/System.ComponentModel/PropertyTabAttribute.cs
@@ -71,7 +71,7 @@ namespace System.ComponentModel
public bool Equals (PropertyTabAttribute other)
{
- return this.Equals (other);
+ return this.Equals ((object) other);
}
public override int GetHashCode()