aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-tree.c
diff options
context:
space:
mode:
authorMichael Monreal <michael.monreal@gmail.com>2007-10-12 17:49:02 +0800
committerMilan Crha <mcrha@src.gnome.org>2007-10-12 17:49:02 +0800
commit953e66428af9639028b3729b448d1fa01c340d09 (patch)
treed413a2f65852df6fe5fe6eee913378dab774ed23 /mail/em-folder-tree.c
parentbe9273d7bab214c49479b4cc96f0a2ffe26ce019 (diff)
downloadgsoc2013-evolution-953e66428af9639028b3729b448d1fa01c340d09.tar
gsoc2013-evolution-953e66428af9639028b3729b448d1fa01c340d09.tar.gz
gsoc2013-evolution-953e66428af9639028b3729b448d1fa01c340d09.tar.bz2
gsoc2013-evolution-953e66428af9639028b3729b448d1fa01c340d09.tar.lz
gsoc2013-evolution-953e66428af9639028b3729b448d1fa01c340d09.tar.xz
gsoc2013-evolution-953e66428af9639028b3729b448d1fa01c340d09.tar.zst
gsoc2013-evolution-953e66428af9639028b3729b448d1fa01c340d09.zip
** Migration of theme icons to data/icons/ (bug #479257)
2007-10-12 Michael Monreal <michael.monreal@gmail.com> ** Migration of theme icons to data/icons/ (bug #479257) * art/Makefile.am: Remove references to art/$size. * configure.in: Include new data/icons/ directory. * file e-util/e-icon-factory.c: Append a private icon directory to the search path. New inbox/outbox/sent icons. * mail/em-folder-tree.c, mail/mail-send-recv.c: Change icon references. New view-calendar icons. * calendar/gui/calendar-commands.c: Change icon references. svn path=/trunk/; revision=34383
Diffstat (limited to 'mail/em-folder-tree.c')
-rw-r--r--mail/em-folder-tree.c6
1 files changed, 3 insertions, 3 deletions
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;
}