aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail
diff options
context:
space:
mode:
authorRathin <rathinusa@yahoo.co.in>2011-06-14 20:26:30 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:27 +0800
commit075e48579b3012928bc715e9e3058f16ffa52f3f (patch)
tree52f1182dfcc2605c2410576122f644f800b47fa4 /modules/mail
parent5de8b9f77e7bbe189a160e345bb452b648392919 (diff)
downloadgsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar
gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.gz
gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.bz2
gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.lz
gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.xz
gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.zst
gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.zip
Bug #530335 - Allow Reply to selected address only
Diffstat (limited to 'modules/mail')
-rw-r--r--modules/mail/e-mail-attachment-handler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mail/e-mail-attachment-handler.c b/modules/mail/e-mail-attachment-handler.c
index 69a9e8fe48..e65e6871c2 100644
--- a/modules/mail/e-mail-attachment-handler.c
+++ b/modules/mail/e-mail-attachment-handler.c
@@ -121,7 +121,7 @@ mail_attachment_handler_reply_all (GtkAction *action,
em_utils_reply_to_message (
priv->shell, CAMEL_MIME_MESSAGE (wrapper),
- NULL, NULL, E_MAIL_REPLY_TO_ALL, style, NULL);
+ NULL, NULL, E_MAIL_REPLY_TO_ALL, style, NULL, NULL);
g_list_foreach (selected, (GFunc) g_object_unref, NULL);
g_list_free (selected);
@@ -157,7 +157,7 @@ mail_attachment_handler_reply_sender (GtkAction *action,
em_utils_reply_to_message (
priv->shell, CAMEL_MIME_MESSAGE (wrapper),
- NULL, NULL, E_MAIL_REPLY_TO_SENDER, style, NULL);
+ NULL, NULL, E_MAIL_REPLY_TO_SENDER, style, NULL, NULL);
g_list_foreach (selected, (GFunc) g_object_unref, NULL);
g_list_free (selected);