diff options
author | Rathin <rathinusa@yahoo.co.in> | 2011-06-14 20:26:30 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-06-14 20:26:30 +0800 |
commit | f5794eff3613afe5082ab15bd6dbb14806ce5fdc (patch) | |
tree | 375f309c21bea171d89bbeb1252c4038ba0bde58 /modules | |
parent | de9b1685edf197281c14ce9c1ae8f384866ff0b2 (diff) | |
download | gsoc2013-evolution-f5794eff3613afe5082ab15bd6dbb14806ce5fdc.tar gsoc2013-evolution-f5794eff3613afe5082ab15bd6dbb14806ce5fdc.tar.gz gsoc2013-evolution-f5794eff3613afe5082ab15bd6dbb14806ce5fdc.tar.bz2 gsoc2013-evolution-f5794eff3613afe5082ab15bd6dbb14806ce5fdc.tar.lz gsoc2013-evolution-f5794eff3613afe5082ab15bd6dbb14806ce5fdc.tar.xz gsoc2013-evolution-f5794eff3613afe5082ab15bd6dbb14806ce5fdc.tar.zst gsoc2013-evolution-f5794eff3613afe5082ab15bd6dbb14806ce5fdc.zip |
Bug #530335 - Allow Reply to selected address only
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mail/e-mail-attachment-handler.c | 4 |
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); |