* 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:
parent
4eabbb4007
commit
7cc3f74b9c
2 changed files with 7 additions and 2 deletions
|
@ -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>
|
2004-12-22 Dan Winship <danw@novell.com>
|
||||||
|
|
||||||
* sources/gtk-sharp-sources.xml: exclude a bunch of uninstalled
|
* sources/gtk-sharp-sources.xml: exclude a bunch of uninstalled
|
||||||
|
|
|
@ -195,9 +195,9 @@ namespace GtkSharp.Generation {
|
||||||
{
|
{
|
||||||
VMSignature vmsig = new VMSignature (parms);
|
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\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))
|
if (NeedNew (implementor))
|
||||||
sw.WriteLine ("new ");
|
sw.Write ("new ");
|
||||||
sw.WriteLine ("virtual {0} {1} ({2})", retval.CSType, "On" + Name, vmsig.ToString ());
|
sw.WriteLine ("virtual {0} {1} ({2})", retval.CSType, "On" + Name, vmsig.ToString ());
|
||||||
sw.WriteLine ("\t\t{");
|
sw.WriteLine ("\t\t{");
|
||||||
if (IsVoid)
|
if (IsVoid)
|
||||||
|
|
Loading…
Reference in a new issue