diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-03 21:40:49 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:06 +0800 |
commit | fc1034551ed2daf3040851e818b2798c3c58f4f9 (patch) | |
tree | 90696864875650f5fe3759aff3eb19c6181d78a6 /plugins | |
parent | bbf5ce3869dbdf1c277ee9d10b07e91fd775502b (diff) | |
download | gsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.tar.gz gsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.tar.zst gsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.zip |
Drop 'folder_uri' param from em_utils_folder_is_outbox().
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/itip-formatter/itip-formatter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c index a90ff38bbe..96dadab0ea 100644 --- a/plugins/itip-formatter/itip-formatter.c +++ b/plugins/itip-formatter/itip-formatter.c @@ -2285,7 +2285,7 @@ in_proper_folder (CamelFolder *folder) CAMEL_IS_VEE_FOLDER (folder) || /* or anything else except of sent, outbox or drafts folder */ (!em_utils_folder_is_sent (folder) && - !em_utils_folder_is_outbox (folder, folder_uri) && + !em_utils_folder_is_outbox (folder) && !em_utils_folder_is_drafts (folder)) )); } else { @@ -2293,7 +2293,7 @@ in_proper_folder (CamelFolder *folder) res = (folder->folder_flags & (CAMEL_FOLDER_IS_TRASH | CAMEL_FOLDER_IS_JUNK)) == 0 && ( (CAMEL_IS_VEE_FOLDER (folder)) || ( !em_utils_folder_is_sent (folder) && - !em_utils_folder_is_outbox (folder, folder_uri) && + !em_utils_folder_is_outbox (folder) && !em_utils_folder_is_drafts (folder))); } |