aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-09-26 16:28:26 +0800
committerMilan Crha <mcrha@redhat.com>2011-09-26 16:28:26 +0800
commit7e1d3d6dbccda146ff513793720d2470f3f13f3e (patch)
treefeac30e989b176e169d46952be429236063a11e7
parent8530a18ce7c059543f611fcd404539ebc33925b8 (diff)
downloadgsoc2013-evolution-7e1d3d6dbccda146ff513793720d2470f3f13f3e.tar
gsoc2013-evolution-7e1d3d6dbccda146ff513793720d2470f3f13f3e.tar.gz
gsoc2013-evolution-7e1d3d6dbccda146ff513793720d2470f3f13f3e.tar.bz2
gsoc2013-evolution-7e1d3d6dbccda146ff513793720d2470f3f13f3e.tar.lz
gsoc2013-evolution-7e1d3d6dbccda146ff513793720d2470f3f13f3e.tar.xz
gsoc2013-evolution-7e1d3d6dbccda146ff513793720d2470f3f13f3e.tar.zst
gsoc2013-evolution-7e1d3d6dbccda146ff513793720d2470f3f13f3e.zip
Bug #659555 - Add custom icons in a folder Subscription dialog
-rw-r--r--mail/em-folder-utils.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/mail/em-folder-utils.c b/mail/em-folder-utils.c
index f693212c60..775dfbb663 100644
--- a/mail/em-folder-utils.c
+++ b/mail/em-folder-utils.c
@@ -691,6 +691,18 @@ em_folder_utils_get_icon_name (guint32 flags)
case CAMEL_FOLDER_TYPE_SENT:
icon_name = "mail-sent";
break;
+ case CAMEL_FOLDER_TYPE_CONTACTS:
+ icon_name = "x-office-address-book";
+ break;
+ case CAMEL_FOLDER_TYPE_EVENTS:
+ icon_name = "x-office-calendar";
+ break;
+ case CAMEL_FOLDER_TYPE_MEMOS:
+ icon_name = "evolution-memos";
+ break;
+ case CAMEL_FOLDER_TYPE_TASKS:
+ icon_name = "evolution-tasks";
+ break;
default:
if (flags & CAMEL_FOLDER_SHARED_TO_ME)
icon_name = "stock_shared-to-me";