From f763364f04e3d2d8e7ce249065303b036e735306 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Thu, 18 Nov 2004 22:35:19 +0000 Subject: [PATCH] 2004-11-18 Mike Kestner * generator/ClassBase.cs : remove a "new" string in the ChildProp class holder decl to fix build warnings. svn path=/trunk/gtk-sharp/; revision=36291 --- ChangeLog | 5 +++++ generator/ClassBase.cs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 98a67df28..9d7263b1f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-11-18 Mike Kestner + + * generator/ClassBase.cs : remove a "new" string in the + ChildProp class holder decl to fix build warnings. + 2004-11-18 Mike Kestner * atk/Atk.metadata : mark an out param on Value. diff --git a/generator/ClassBase.cs b/generator/ClassBase.cs index 32c686f82..cdaa11410 100644 --- a/generator/ClassBase.cs +++ b/generator/ClassBase.cs @@ -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 ("");