aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-03 21:40:49 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:06 +0800
commitfc1034551ed2daf3040851e818b2798c3c58f4f9 (patch)
tree90696864875650f5fe3759aff3eb19c6181d78a6 /modules
parentbbf5ce3869dbdf1c277ee9d10b07e91fd775502b (diff)
downloadgsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.tar
gsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.tar.gz
gsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.tar.bz2
gsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.tar.lz
gsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.tar.xz
gsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.tar.zst
gsoc2013-evolution-fc1034551ed2daf3040851e818b2798c3c58f4f9.zip
Drop 'folder_uri' param from em_utils_folder_is_outbox().
Diffstat (limited to 'modules')
-rw-r--r--modules/mail/e-mail-shell-view-private.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mail/e-mail-shell-view-private.c b/modules/mail/e-mail-shell-view-private.c
index ed4da52ce2..c6a034bf40 100644
--- a/modules/mail/e-mail-shell-view-private.c
+++ b/modules/mail/e-mail-shell-view-private.c
@@ -979,7 +979,7 @@ e_mail_shell_view_create_filter_from_selected (EMailShellView *mail_shell_view,
if (em_utils_folder_is_sent (folder))
filter_source = E_FILTER_SOURCE_OUTGOING;
- else if (em_utils_folder_is_outbox (folder, folder_uri))
+ else if (em_utils_folder_is_outbox (folder))
filter_source = E_FILTER_SOURCE_OUTGOING;
else
filter_source = E_FILTER_SOURCE_INCOMING;
@@ -1175,7 +1175,7 @@ e_mail_shell_view_update_sidebar (EMailShellView *mail_shell_view)
num_visible), num_visible);
/* "Outbox" folder */
- } else if (em_utils_folder_is_outbox (folder, folder_uri)) {
+ } else if (em_utils_folder_is_outbox (folder)) {
g_string_append_printf (
buffer, ngettext ("%d unsent", "%d unsent",
num_visible), num_visible);