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 ("");