aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-01-06 20:35:05 +0800
committerMilan Crha <mcrha@redhat.com>2010-01-06 20:35:05 +0800
commit5f1c9ff19d80bb50cd00114b8fb633d8eba3365f (patch)
treeb5887c850a19e6471732090146eecc90a3c671a5
parent46f503beee3f90a09ffdda03c288d4653c06f597 (diff)
downloadgsoc2013-evolution-5f1c9ff19d80bb50cd00114b8fb633d8eba3365f.tar
gsoc2013-evolution-5f1c9ff19d80bb50cd00114b8fb633d8eba3365f.tar.gz
gsoc2013-evolution-5f1c9ff19d80bb50cd00114b8fb633d8eba3365f.tar.bz2
gsoc2013-evolution-5f1c9ff19d80bb50cd00114b8fb633d8eba3365f.tar.lz
gsoc2013-evolution-5f1c9ff19d80bb50cd00114b8fb633d8eba3365f.tar.xz
gsoc2013-evolution-5f1c9ff19d80bb50cd00114b8fb633d8eba3365f.tar.zst
gsoc2013-evolution-5f1c9ff19d80bb50cd00114b8fb633d8eba3365f.zip
Bug #549988 - "Empty Trash" in Trash popup empties all Trash folders
-rw-r--r--modules/mail/e-mail-shell-view-actions.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/mail/e-mail-shell-view-actions.c b/modules/mail/e-mail-shell-view-actions.c
index 139dd9474f..94b7b7b774 100644
--- a/modules/mail/e-mail-shell-view-actions.c
+++ b/modules/mail/e-mail-shell-view-actions.c
@@ -132,8 +132,8 @@ action_mail_download_cb (GtkAction *action,
}
static void
-action_mail_empty_trash_cb (GtkAction *action,
- EMailShellView *mail_shell_view)
+action_mail_empty_trashes_cb (GtkAction *action,
+ EMailShellView *mail_shell_view)
{
EShellWindow *shell_window;
EShellView *shell_view;
@@ -938,14 +938,14 @@ static GtkActionEntry mail_entries[] = {
N_("Empty _Trash"),
NULL,
N_("Permanently remove all the deleted messages from all folders"),
- G_CALLBACK (action_mail_empty_trash_cb) },
+ G_CALLBACK (action_mail_empty_trashes_cb) },
{ "mail-empty-trash", /* this is a popup action over the trash folder */
NULL,
N_("_Empty Trash"),
NULL,
N_("Permanently remove all the deleted messages from all folders"),
- G_CALLBACK (action_mail_empty_trash_cb) },
+ G_CALLBACK (action_mail_folder_expunge_cb) },
{ "mail-flush-outbox",
"mail-send",