aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog7
-rw-r--r--mail/em-folder-tree.c6
-rw-r--r--mail/mail-send-recv.c4
3 files changed, 12 insertions, 5 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index af72a912f1..959721f7c3 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,10 @@
+2007-10-12 Michael Monreal <michael.monreal@gmail.com>
+
+ ** New inbox/outbox/sent icons (bug #479257)
+
+ * mail/em-folder-tree.c, mail/mail-send-recv.c:
+ Change icon references.
+
2007-10-11 Matthew Barnes <mbarnes@redhat.com>
* em-format.c (em_format_add_puri):
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c
index 3aff4a0358..34dab1767a 100644
--- a/mail/em-folder-tree.c
+++ b/mail/em-folder-tree.c
@@ -289,13 +289,13 @@ render_pixbuf (GtkTreeViewColumn *column, GtkCellRenderer *renderer,
if (!initialised) {
folder_icons[FOLDER_ICON_NORMAL] = e_icon_factory_get_icon ("folder", E_ICON_SIZE_MENU);
- folder_icons[FOLDER_ICON_INBOX] = e_icon_factory_get_icon ("stock_inbox", E_ICON_SIZE_MENU);
- folder_icons[FOLDER_ICON_OUTBOX] = e_icon_factory_get_icon ("stock_outbox", E_ICON_SIZE_MENU);
+ folder_icons[FOLDER_ICON_INBOX] = e_icon_factory_get_icon ("mail-inbox", E_ICON_SIZE_MENU);
+ folder_icons[FOLDER_ICON_OUTBOX] = e_icon_factory_get_icon ("mail-outbox", E_ICON_SIZE_MENU);
folder_icons[FOLDER_ICON_TRASH] = e_icon_factory_get_icon ("user-trash", E_ICON_SIZE_MENU);
folder_icons[FOLDER_ICON_JUNK] = e_icon_factory_get_icon ("mail-mark-junk", E_ICON_SIZE_MENU);
folder_icons[FOLDER_ICON_SHARED_TO_ME] = e_icon_factory_get_icon ("stock_shared-to-me", E_ICON_SIZE_MENU);
folder_icons[FOLDER_ICON_SHARED_BY_ME] = e_icon_factory_get_icon ("stock_shared-by-me", E_ICON_SIZE_MENU);
- folder_icons[FOLDER_ICON_SENT] = e_icon_factory_get_icon ("stock_sent-mail", E_ICON_SIZE_MENU);
+ folder_icons[FOLDER_ICON_SENT] = e_icon_factory_get_icon ("mail-sent", E_ICON_SIZE_MENU);
initialised = TRUE;
}
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c
index 83f146d5ff..a1580d6788 100644
--- a/mail/mail-send-recv.c
+++ b/mail/mail-send-recv.c
@@ -489,7 +489,7 @@ build_dialog (EAccountList *accounts, CamelFolder *outbox, const char *destinati
info->timeout_id = g_timeout_add (STATUS_TIMEOUT, operation_status_timeout, info);
recv_icon = e_icon_factory_get_image (
- "stock_mail-receive", E_ICON_SIZE_LARGE_TOOLBAR);
+ "mail-inbox", E_ICON_SIZE_LARGE_TOOLBAR);
pretty_url = format_url (source->url, account->name);
label = gtk_label_new (NULL);
gtk_label_set_ellipsize (
@@ -564,7 +564,7 @@ build_dialog (EAccountList *accounts, CamelFolder *outbox, const char *destinati
info->timeout_id = g_timeout_add (STATUS_TIMEOUT, operation_status_timeout, info);
send_icon = e_icon_factory_get_image (
- "mail-send", E_ICON_SIZE_LARGE_TOOLBAR);
+ "mail-outbox", E_ICON_SIZE_LARGE_TOOLBAR);
pretty_url = format_url (destination, NULL);
label = gtk_label_new (NULL);
gtk_label_set_ellipsize (