2004-11-18 Mike Kestner <mkestner@novell.com>

* generator/ClassBase.cs : remove a "new" string in the
	ChildProp class holder decl to fix build warnings.

svn path=/trunk/gtk-sharp/; revision=36291
This commit is contained in:
Mike Kestner 2004-11-18 22:35:19 +00:00
parent 7d63d5d86f
commit f763364f04
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-11-18 Mike Kestner <mkestner@novell.com>
* generator/ClassBase.cs : remove a "new" string in the
ChildProp class holder decl to fix build warnings.
2004-11-18 Mike Kestner <mkestner@novell.com>
* atk/Atk.metadata : mark an out param on Value.

View File

@ -221,7 +221,7 @@ namespace GtkSharp.Generation {
StreamWriter sw = gen_info.Writer;
sw.WriteLine ("\t\tpublic new class " + Name + "Child : Gtk.Container.ContainerChild {");
sw.WriteLine ("\t\tpublic class " + Name + "Child : Gtk.Container.ContainerChild {");
sw.WriteLine ("\t\t\tinternal " + Name + "Child (Gtk.Container parent, Gtk.Widget child) : base (parent, child) {}");
sw.WriteLine ("");