diff --git a/ChangeLog b/ChangeLog index b2a4ae5fc..2cde164ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-12-22 Dan Winship + + * generator/Signal.cs: fix some WriteLine()s that should have been + Write()s + 2004-12-22 Dan Winship * sources/gtk-sharp-sources.xml: exclude a bunch of uninstalled diff --git a/generator/Signal.cs b/generator/Signal.cs index 76a4dc763..b4259d0b7 100644 --- a/generator/Signal.cs +++ b/generator/Signal.cs @@ -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)