fixup hash

svn path=/trunk/gtk-sharp/; revision=23042
This commit is contained in:
Ben Maurer 2004-02-12 21:28:42 +00:00
parent d54f980494
commit f555d60a7a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-02-12 Ben Maurer <bmaurer@users.sourceforge.net>
* gtk/TreeIter.custom: Make the hash here not collide.
2004-02-12 Mike Kestner <mkestner@ximian.com>
* gdk/Gdk.metadata : hide the GList API

View File

@ -3,7 +3,7 @@
//
public override int GetHashCode ()
{
return Stamp;
return Stamp ^ (int) _user_data ^ (int) _user_data2 ^ (int) _user_data3;
}
public override bool Equals (object o)