mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 13:25:34 +00:00
2003-11-29 Mike Kestner <mkestner@speakeasy.net>
* generator/StructBase.cs : remove ==/!= operator generation. svn path=/trunk/gtk-sharp/; revision=20611
This commit is contained in:
parent
8fce5c1f4b
commit
c8afbd3ca2
|
@ -1,3 +1,7 @@
|
||||||
|
2003-11-29 Mike Kestner <mkestner@speakeasy.net>
|
||||||
|
|
||||||
|
* generator/StructBase.cs : remove ==/!= operator generation.
|
||||||
|
|
||||||
2003-11-28 Miguel de Icaza <miguel@ximian.com>
|
2003-11-28 Miguel de Icaza <miguel@ximian.com>
|
||||||
|
|
||||||
* gdk/Pixmap.custom: Added Pixmap.custom to add a convenience constructor.
|
* gdk/Pixmap.custom: Added Pixmap.custom to add a convenience constructor.
|
||||||
|
|
|
@ -260,16 +260,6 @@ namespace GtkSharp.Generation {
|
||||||
sw.WriteLine ("\t\t\treturn self;");
|
sw.WriteLine ("\t\t\treturn self;");
|
||||||
sw.WriteLine ("\t\t}");
|
sw.WriteLine ("\t\t}");
|
||||||
sw.WriteLine ();
|
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) {
|
foreach (Ctor ctor in Ctors) {
|
||||||
ctor.ForceStatic = true;
|
ctor.ForceStatic = true;
|
||||||
|
|
Loading…
Reference in a new issue