GNOME Bugzilla – Bug 111093
GnomeProgram has no default-icon
Last modified: 2004-12-22 21:47:04 UTC
When I run a very simple project made with Glade-2 (a GnomeApp window with a placeholder GtkLabel in the application area) I get the following warning message: $ LC_MESSAGES=C ./lodju-new2 (lodju-new2:5199): GLib-GObject-WARNING **: gobject.c:946: object class `GnomeProgram' has no property named `default-icon' I have, however, set the icon for the GnomeApp widget in Glade-2 and the icon show correctly in top Metacity window title bar, and in the panel window list. Everything seems to work fine, but the warning message is a bit annoying. I'll happily provide the .glade and .py files.
Created attachment 15835 [details] The Glade file to replicate the bug
LODJU_GLADE = "lodju.glade" import sys import pygtk pygtk.require('2.0') import gtk import gtk.glade import gnome import gnome.ui def on_main_window_delete_event(*args): gtk.main_quit() return gtk.FALSE gnome.init("lodju-new2", "0.0.0.0.0") xml = gtk.glade.XML(LODJU_GLADE) xml.signal_autoconnect(locals()) gtk.main()
Thanks for the bug report. This looks like a duplicate. *** This bug has been marked as a duplicate of 109407 ***