File gnome-panel-missing-icon-no-dialog.patch of Package gnome-panel-nld
? gnome-panel-missing-icon-no-dialog.patch
Index: gnome-panel/button-widget.c
===================================================================
RCS file: /cvs/gnome/gnome-panel/gnome-panel/button-widget.c,v
retrieving revision 1.147
diff -u -p -u -r1.147 button-widget.c
--- gnome-panel/button-widget.c 22 Oct 2005 07:06:03 -0000 1.147
+++ gnome-panel/button-widget.c 24 Mar 2006 22:41:43 -0000
@@ -193,12 +193,8 @@ button_widget_reload_pixbuf (ButtonWidge
button->orientation & PANEL_HORIZONTAL_MASK ? button->size : -1,
&error);
if (error) {
- panel_error_dialog (gdk_screen_get_default (),
- "cannot_load_pixbuf", TRUE,
- _("Failed to load image %s"),
- "%s",
- button->filename,
- error);
+ g_warning ("Failed to load image '%s': %s",
+ button->filename, error);
g_free (error);
}
}