aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser-factory.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-01-25 16:35:04 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-01-25 16:35:04 +0800
commit735020a97601de2799e6107c45b35047fedb7efa (patch)
tree8e305bc951d7874d9e43303de7180c47783cb1e3 /mail/folder-browser-factory.c
parent58745c4e998b433378a5b759331d14d08edf6b7d (diff)
downloadgsoc2013-evolution-735020a97601de2799e6107c45b35047fedb7efa.tar
gsoc2013-evolution-735020a97601de2799e6107c45b35047fedb7efa.tar.gz
gsoc2013-evolution-735020a97601de2799e6107c45b35047fedb7efa.tar.bz2
gsoc2013-evolution-735020a97601de2799e6107c45b35047fedb7efa.tar.lz
gsoc2013-evolution-735020a97601de2799e6107c45b35047fedb7efa.tar.xz
gsoc2013-evolution-735020a97601de2799e6107c45b35047fedb7efa.tar.zst
gsoc2013-evolution-735020a97601de2799e6107c45b35047fedb7efa.zip
More happy icons for the mailer.
svn path=/trunk/; revision=7807
Diffstat (limited to 'mail/folder-browser-factory.c')
-rw-r--r--mail/folder-browser-factory.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c
index d57b657ac2..e04ddf7aef 100644
--- a/mail/folder-browser-factory.c
+++ b/mail/folder-browser-factory.c
@@ -111,7 +111,11 @@ set_pixmap (BonoboUIComponent *uic,
path = g_concat_dir_and_file (EVOLUTION_DATADIR "/images/evolution", icon);
pixbuf = gdk_pixbuf_new_from_file (path);
- g_return_if_fail (pixbuf != NULL);
+ if (pixbuf == NULL) {
+ g_warning ("Cannot load image -- %s", path);
+ g_free (path);
+ return;
+ }
bonobo_ui_util_set_pixbuf (uic, xml_path, pixbuf);
@@ -123,7 +127,18 @@ set_pixmap (BonoboUIComponent *uic,
static void
update_pixmaps (BonoboUIComponent *uic)
{
+ set_pixmap (uic, "/menu/File/Print/Print", "16_print.xpm");
+ set_pixmap (uic, "/menu/File/Print/Print Preview", "16_print.xpm");
+
+ set_pixmap (uic, "/menu/Component/Message/MessageEdit", "16_edit.xpm");
+ set_pixmap (uic, "/menu/Component/Message/MessageSaveAs", "16_save.xpm");
+ set_pixmap (uic, "/menu/Component/Message/MessagePrint", "16_print.xpm");
+ set_pixmap (uic, "/menu/Component/Message/MessageMove", "16_move_message.xpm");
+ set_pixmap (uic, "/menu/Component/Message/MessageReplyAll", "16_reply_to_all.xpm");
+ set_pixmap (uic, "/menu/Component/Message/MessageReplySndr", "16_reply.xpm");
+
set_pixmap (uic, "/menu/Component/Folder/FolderConfig", "16_configure_folder.xpm");
+
set_pixmap (uic, "/menu/Settings/SetMailConfig", "16_configure_mail.xpm");
set_pixmap (uic, "/Toolbar/MailGet", "buttons/fetch-mail.png");