[cricker@winsucks cricker]$ gnome-terminal (gnome-terminal:27344): GnomeUI-WARNING **: gnome_icon_entry_gnome_entry deprecated, use changed signal! (gnome-terminal:27344): GnomeUI-WARNING **: gnome_icon_entry_gnome_entry deprecated, use changed signal! This is with gnome-terminal-2.2.0-2 on a pre-beta5 system
The bug here is in libgnomeui/glade/glade-gnome.c
So glade-gnome.c is using deprecated routines because the person who deprecated the routines hadn't thought some of the side effects through. They wrote "this is deprecated in favour of the above" (gnome-icon-entry.h) to indicate that people should use the gnome_icon_entry_* routines instead of retrieving the GnomeEntry and calling the gnome_entry on it. The problem is that there is no gnome_icon_entry_ do what glade-gnome.c wants to do. Either glade-gnome.c needs to be fixed to not export the features of GnomeIconEntry that require accessing the contained GnomeEntry, or gnome-icon-entry needs to provide wrappers for all the GnomeEntry features, or gnome-icon-entry needs to stop spewing warnings (and be made non-deprecated). The latter is the least intrusive.
My preferred fix for this release would be to just remove the warning.
I don't see this in severn