* generator/Signal.cs: fix some WriteLine()s that should have been

Write()s

svn path=/trunk/gtk-sharp/; revision=38056
This commit is contained in:
Dan Winship 2004-12-22 21:52:18 +00:00
parent 4eabbb4007
commit 7cc3f74b9c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-12-22 Dan Winship <danw@novell.com>
* generator/Signal.cs: fix some WriteLine()s that should have been
Write()s
2004-12-22 Dan Winship <danw@novell.com>
* sources/gtk-sharp-sources.xml: exclude a bunch of uninstalled

View File

@ -195,9 +195,9 @@ namespace GtkSharp.Generation {
{
VMSignature vmsig = new VMSignature (parms);
sw.WriteLine ("\t\t[GLib.DefaultSignalHandler(Type=typeof(" + (implementor != null ? implementor.QualifiedName : container_type.QualifiedName) + "), ConnectionMethod=\"Override" + Name +"\")]");
sw.WriteLine ("\t\tprotected ");
sw.Write ("\t\tprotected ");
if (NeedNew (implementor))
sw.WriteLine ("new ");
sw.Write ("new ");
sw.WriteLine ("virtual {0} {1} ({2})", retval.CSType, "On" + Name, vmsig.ToString ());
sw.WriteLine ("\t\t{");
if (IsVoid)