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:
Mike Kestner 2007-10-24 20:08:24 +00:00
parent 6fa5d61269
commit 0347cd44dc
2 changed files with 5 additions and 1 deletions

View File

@ -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>
* generator/InterfaceGen.cs: generate an Implementor prop on the

View File

@ -103,7 +103,6 @@ namespace GtkSharp.Generation {
sw.WriteLine ("\t\t\t\t" + call_string + ";");
} else
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;
sw.Write (call.Finish ("\t\t\t\t"));
if (!retval.IsVoid)