From 7cc3f74b9c9b5247a8e5f1dca7c92238d13bd0ad Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Wed, 22 Dec 2004 21:52:18 +0000 Subject: [PATCH] * generator/Signal.cs: fix some WriteLine()s that should have been Write()s svn path=/trunk/gtk-sharp/; revision=38056 --- ChangeLog | 5 +++++ generator/Signal.cs | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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)