diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-03 21:40:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-05-03 21:42:06 +0800 |
commit | c3b983d6e12e218b6f908cf263e7e08570332d6a (patch) | |
tree | 560030902b043570bfaf391f40dd40b185ccec9b /mail/em-folder-tree-model.c | |
parent | b9f932b1b84349e80e8383d925a00a75a3b7fe29 (diff) | |
download | gsoc2013-evolution-c3b983d6e12e218b6f908cf263e7e08570332d6a.tar.gz gsoc2013-evolution-c3b983d6e12e218b6f908cf263e7e08570332d6a.tar.zst gsoc2013-evolution-c3b983d6e12e218b6f908cf263e7e08570332d6a.zip |
Drop 'folder_uri' param from em_utils_folder_is_outbox().
Diffstat (limited to 'mail/em-folder-tree-model.c')
-rw-r--r-- | mail/em-folder-tree-model.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-folder-tree-model.c b/mail/em-folder-tree-model.c index 4240dc06f0..c989d4e205 100644 --- a/mail/em-folder-tree-model.c +++ b/mail/em-folder-tree-model.c @@ -696,7 +696,7 @@ em_folder_tree_model_set_folder_info (EMFolderTreeModel *model, folder_cache, fi->uri, &folder) && folder) { is_drafts = em_utils_folder_is_drafts (folder); - if (is_drafts || em_utils_folder_is_outbox (folder, fi->uri)) { + if (is_drafts || em_utils_folder_is_outbox (folder)) { gint total; if ((total = camel_folder_get_message_count (folder)) > 0) { |