mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-23 17:31:16 +00:00
2007-10-24 Mike Kestner <mkestner@novell.com>
* generator/VirtualMethod.cs: clean up compiler warning and duplicate call. svn path=/trunk/gtk-sharp/; revision=88125
This commit is contained in:
parent
6fa5d61269
commit
0347cd44dc
|
@ -1,3 +1,8 @@
|
||||||
|
2007-10-24 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* generator/VirtualMethod.cs: clean up compiler warning and duplicate
|
||||||
|
call.
|
||||||
|
|
||||||
2007-10-24 Mike Kestner <mkestner@novell.com>
|
2007-10-24 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* generator/InterfaceGen.cs: generate an Implementor prop on the
|
* generator/InterfaceGen.cs: generate an Implementor prop on the
|
||||||
|
|
|
@ -103,7 +103,6 @@ namespace GtkSharp.Generation {
|
||||||
sw.WriteLine ("\t\t\t\t" + call_string + ";");
|
sw.WriteLine ("\t\t\t\t" + call_string + ";");
|
||||||
} else
|
} else
|
||||||
sw.WriteLine ("\t\t\t\t" + retval.ToNativeType + " result = " + retval.ToNative (call_string) + ";");
|
sw.WriteLine ("\t\t\t\t" + retval.ToNativeType + " result = " + retval.ToNative (call_string) + ";");
|
||||||
string finish = call.Finish ("\t\t\t\t");
|
|
||||||
bool fatal = parms.HasOutParam || !retval.IsVoid;
|
bool fatal = parms.HasOutParam || !retval.IsVoid;
|
||||||
sw.Write (call.Finish ("\t\t\t\t"));
|
sw.Write (call.Finish ("\t\t\t\t"));
|
||||||
if (!retval.IsVoid)
|
if (!retval.IsVoid)
|
||||||
|
|
Loading…
Reference in a new issue