On Sat, 2007-09-22 at 12:29 -0500, Mark Tilford wrote: > Any luck on figuring this out? > > On 9/11/07, Milosz Derezynski <[EMAIL PROTECTED]> wrote: > > Yeah but Gtk::Container does a class vfunc override, so it should > > never be called. I'm looking for the problem deeper now simply because > > it bugs me that it exists (shouldn't be there!)
Gtk::Container is an abstract class. It does nothing more than provide a dummy "remove" implementation. A derived widget (e.g Box, Table, Bin etc) has to provide its own implementation (and in the gtkmm versions, they do). --p _______________________________________________ gtkmm-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gtkmm-list
