diff --git a/ChangeLog b/ChangeLog index 79f0c9d58..2a63be3c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-11-29 Mike Kestner + + * generator/StructBase.cs : remove ==/!= operator generation. + 2003-11-28 Miguel de Icaza * gdk/Pixmap.custom: Added Pixmap.custom to add a convenience constructor. diff --git a/generator/StructBase.cs b/generator/StructBase.cs index 691e56a03..e9c232b85 100644 --- a/generator/StructBase.cs +++ b/generator/StructBase.cs @@ -260,16 +260,6 @@ namespace GtkSharp.Generation { sw.WriteLine ("\t\t\treturn self;"); sw.WriteLine ("\t\t}"); sw.WriteLine (); - sw.WriteLine ("\t\tpublic static bool operator == ({0} a, {0} b)", QualifiedName); - sw.WriteLine ("\t\t{"); - sw.WriteLine ("\t\t\treturn a.Equals (b);"); - sw.WriteLine ("\t\t}"); - sw.WriteLine (); - sw.WriteLine ("\t\tpublic static bool operator != ({0} a, {0} b)", QualifiedName); - sw.WriteLine ("\t\t{"); - sw.WriteLine ("\t\t\treturn ! a.Equals (b);"); - sw.WriteLine ("\t\t}"); - sw.WriteLine(); foreach (Ctor ctor in Ctors) { ctor.ForceStatic = true;