diff options
author | Sankar P <psankar@novell.com> | 2005-09-20 20:38:54 +0800 |
---|---|---|
committer | Sankarasivasubramanian Pasupathilingam <psankar@src.gnome.org> | 2005-09-20 20:38:54 +0800 |
commit | 4545f5d072cd76f59eeb7011b348d61ac8e14f6a (patch) | |
tree | 99787aec3542390b51a46af808900bfd222b227e /mail/em-folder-tree-model.c | |
parent | d07dc7533727996caa49dfa3e5b19528beeda0ee (diff) | |
download | gsoc2013-evolution-4545f5d072cd76f59eeb7011b348d61ac8e14f6a.tar.gz gsoc2013-evolution-4545f5d072cd76f59eeb7011b348d61ac8e14f6a.tar.zst gsoc2013-evolution-4545f5d072cd76f59eeb7011b348d61ac8e14f6a.zip |
Added enum and the code to change the icon for sent items folder. Fixes
2005-09-15 Sankar P <psankar@novell.com>
* em-folder-tree-model.c (em_folder_tree_model_set_folder_info):
* em-folder-tree.c (render_pixbuf): Added enum and the code to
change the icon for sent items folder. Fixes #257321
svn path=/trunk/; revision=30365
Diffstat (limited to 'mail/em-folder-tree-model.c')
-rw-r--r-- | mail/em-folder-tree-model.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/em-folder-tree-model.c b/mail/em-folder-tree-model.c index 478481b144..44b318b44c 100644 --- a/mail/em-folder-tree-model.c +++ b/mail/em-folder-tree-model.c @@ -475,6 +475,7 @@ em_folder_tree_model_set_folder_info (EMFolderTreeModel *model, GtkTreeIter *ite name = _("Outbox"); } else if (!strcmp(fi->full_name, "Sent")) { name = _("Sent"); + flags = (flags & ~CAMEL_FOLDER_TYPE_MASK) | CAMEL_FOLDER_TYPE_SENT; } } |