diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-01-25 16:04:17 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-01-25 16:04:17 +0800 |
commit | 57f1c74f30c97911e0c8b6d47f00e3067a73d9ed (patch) | |
tree | 739c2b5114aa60475e8ee6016f8506392e95a9e6 /mail/folder-browser-factory.c | |
parent | 6ede85cff36220030475ee74f50b4989a45ba1dd (diff) | |
download | gsoc2013-evolution-57f1c74f30c97911e0c8b6d47f00e3067a73d9ed.tar gsoc2013-evolution-57f1c74f30c97911e0c8b6d47f00e3067a73d9ed.tar.gz gsoc2013-evolution-57f1c74f30c97911e0c8b6d47f00e3067a73d9ed.tar.bz2 gsoc2013-evolution-57f1c74f30c97911e0c8b6d47f00e3067a73d9ed.tar.lz gsoc2013-evolution-57f1c74f30c97911e0c8b6d47f00e3067a73d9ed.tar.xz gsoc2013-evolution-57f1c74f30c97911e0c8b6d47f00e3067a73d9ed.tar.zst gsoc2013-evolution-57f1c74f30c97911e0c8b6d47f00e3067a73d9ed.zip |
Get the mailer to use the new menu icons.
svn path=/trunk/; revision=7805
Diffstat (limited to 'mail/folder-browser-factory.c')
-rw-r--r-- | mail/folder-browser-factory.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c index 4654451416..d57b657ac2 100644 --- a/mail/folder-browser-factory.c +++ b/mail/folder-browser-factory.c @@ -108,7 +108,7 @@ set_pixmap (BonoboUIComponent *uic, char *path; GdkPixbuf *pixbuf; - path = g_concat_dir_and_file (EVOLUTION_DATADIR "/images/evolution/buttons", icon); + path = g_concat_dir_and_file (EVOLUTION_DATADIR "/images/evolution", icon); pixbuf = gdk_pixbuf_new_from_file (path); g_return_if_fail (pixbuf != NULL); @@ -123,13 +123,16 @@ set_pixmap (BonoboUIComponent *uic, static void update_pixmaps (BonoboUIComponent *uic) { - set_pixmap (uic, "/Toolbar/MailGet", "fetch-mail.png"); - set_pixmap (uic, "/Toolbar/MailCompose", "compose-message.png"); - set_pixmap (uic, "/Toolbar/Reply", "reply.png"); - set_pixmap (uic, "/Toolbar/ReplyAll", "reply-to-all.png"); - set_pixmap (uic, "/Toolbar/Forward", "forward.png"); - set_pixmap (uic, "/Toolbar/Move", "move-message.png"); - set_pixmap (uic, "/Toolbar/Copy", "copy-message.png"); + 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"); + set_pixmap (uic, "/Toolbar/MailCompose", "buttons/compose-message.png"); + set_pixmap (uic, "/Toolbar/Reply", "buttons/reply.png"); + set_pixmap (uic, "/Toolbar/ReplyAll", "buttons/reply-to-all.png"); + set_pixmap (uic, "/Toolbar/Forward", "buttons/forward.png"); + set_pixmap (uic, "/Toolbar/Move", "buttons/move-message.png"); + set_pixmap (uic, "/Toolbar/Copy", "buttons/copy-message.png"); } static void |