diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-22 00:26:29 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-22 00:28:43 +0800 |
commit | 3459b389054ae32528d4724679d288fdc364dd8c (patch) | |
tree | 6f14d07cb1ad21c75d22103d16c162670eb609fb /modules/mail/e-mail-shell-view.c | |
parent | 09bd7ec1d9ab4005e7d390496a61800cd04d8c91 (diff) | |
download | gsoc2013-evolution-3459b389054ae32528d4724679d288fdc364dd8c.tar gsoc2013-evolution-3459b389054ae32528d4724679d288fdc364dd8c.tar.gz gsoc2013-evolution-3459b389054ae32528d4724679d288fdc364dd8c.tar.bz2 gsoc2013-evolution-3459b389054ae32528d4724679d288fdc364dd8c.tar.lz gsoc2013-evolution-3459b389054ae32528d4724679d288fdc364dd8c.tar.xz gsoc2013-evolution-3459b389054ae32528d4724679d288fdc364dd8c.tar.zst gsoc2013-evolution-3459b389054ae32528d4724679d288fdc364dd8c.zip |
BugĀ 607608 - Empty Trash does not work unless Trash is selected
Diffstat (limited to 'modules/mail/e-mail-shell-view.c')
-rw-r--r-- | modules/mail/e-mail-shell-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mail/e-mail-shell-view.c b/modules/mail/e-mail-shell-view.c index e86a5bb6ac..6016a14717 100644 --- a/modules/mail/e-mail-shell-view.c +++ b/modules/mail/e-mail-shell-view.c @@ -527,7 +527,7 @@ mail_shell_view_update_actions (EShellView *shell_view) gtk_action_set_sensitive (action, sensitive); g_object_set (action, "label", label, NULL); - action = ACTION (MAIL_EMPTY_TRASH); + action = ACTION (MAIL_ACCOUNT_EXPUNGE); sensitive = folder_is_trash; gtk_action_set_sensitive (action, sensitive); |