aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-05-03 19:47:48 +0800
committerMilan Crha <mcrha@redhat.com>2013-05-03 19:47:48 +0800
commit5dfeb54af9639bc3a1df5e4262ec384d2abf5a9d (patch)
treefa91b24023ad4b8493bcfde65bac344c55e63cc9 /modules
parent2a0d0870ca79f164275173828a1c1500833e8570 (diff)
downloadgsoc2013-evolution-5dfeb54af9639bc3a1df5e4262ec384d2abf5a9d.tar
gsoc2013-evolution-5dfeb54af9639bc3a1df5e4262ec384d2abf5a9d.tar.gz
gsoc2013-evolution-5dfeb54af9639bc3a1df5e4262ec384d2abf5a9d.tar.bz2
gsoc2013-evolution-5dfeb54af9639bc3a1df5e4262ec384d2abf5a9d.tar.lz
gsoc2013-evolution-5dfeb54af9639bc3a1df5e4262ec384d2abf5a9d.tar.xz
gsoc2013-evolution-5dfeb54af9639bc3a1df5e4262ec384d2abf5a9d.tar.zst
gsoc2013-evolution-5dfeb54af9639bc3a1df5e4262ec384d2abf5a9d.zip
Bug #699555 - prompt-on-mark-all-read doesn't work in context menu
Diffstat (limited to 'modules')
-rw-r--r--modules/mail/e-mail-shell-view-actions.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/modules/mail/e-mail-shell-view-actions.c b/modules/mail/e-mail-shell-view-actions.c
index 16ad279629..3af5fac4ee 100644
--- a/modules/mail/e-mail-shell-view-actions.c
+++ b/modules/mail/e-mail-shell-view-actions.c
@@ -423,24 +423,18 @@ action_mail_folder_mark_all_as_read_cb (GtkAction *action,
{
EShellView *shell_view;
EShellWindow *shell_window;
- EShellBackend *shell_backend;
EMailShellContent *mail_shell_content;
EMailReader *reader;
EMailView *mail_view;
CamelFolder *folder;
GtkWindow *parent;
- EMailBackend *backend;
- EMailSession *session;
- MailFolderCache *cache;
GtkWidget *message_list;
GPtrArray *uids;
const gchar *key;
- const gchar *prompt;
guint ii;
shell_view = E_SHELL_VIEW (mail_shell_view);
shell_window = e_shell_view_get_shell_window (shell_view);
- shell_backend = e_shell_view_get_shell_backend (shell_view);
parent = GTK_WINDOW (shell_window);
mail_shell_content = mail_shell_view->priv->mail_shell_content;
@@ -451,17 +445,9 @@ action_mail_folder_mark_all_as_read_cb (GtkAction *action,
folder = e_mail_reader_get_folder (reader);
g_return_if_fail (folder != NULL);
- backend = E_MAIL_BACKEND (shell_backend);
- session = e_mail_backend_get_session (backend);
- cache = e_mail_session_get_folder_cache (session);
key = "prompt-on-mark-all-read";
- if (mail_folder_cache_get_folder_has_children (cache, folder, NULL))
- prompt = "mail:ask-mark-all-read-sub";
- else
- prompt = "mail:ask-mark-all-read";
-
- if (!em_utils_prompt_user (parent, key, prompt, NULL))
+ if (!em_utils_prompt_user (parent, key, "mail:ask-mark-all-read", NULL))
return;
message_list = e_mail_reader_get_message_list (reader);