aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-reader.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-03 03:45:29 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-03 03:48:42 +0800
commita27c70e42741771b43d264f17b14c4674d0e51a7 (patch)
tree90281f4cf096029c6324890ed0683e091d5c4098 /mail/e-mail-reader.c
parent13b2bd263cc68e60839d04f801fd8b6f4b80b3d2 (diff)
downloadgsoc2013-evolution-a27c70e42741771b43d264f17b14c4674d0e51a7.tar
gsoc2013-evolution-a27c70e42741771b43d264f17b14c4674d0e51a7.tar.gz
gsoc2013-evolution-a27c70e42741771b43d264f17b14c4674d0e51a7.tar.bz2
gsoc2013-evolution-a27c70e42741771b43d264f17b14c4674d0e51a7.tar.lz
gsoc2013-evolution-a27c70e42741771b43d264f17b14c4674d0e51a7.tar.xz
gsoc2013-evolution-a27c70e42741771b43d264f17b14c4674d0e51a7.tar.zst
gsoc2013-evolution-a27c70e42741771b43d264f17b14c4674d0e51a7.zip
Add e_mail_reader_forward_messages().
Replaces em_utils_forward_messages().
Diffstat (limited to 'mail/e-mail-reader.c')
-rw-r--r--mail/e-mail-reader.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c
index 4730ac5b3b..f63908cd54 100644
--- a/mail/e-mail-reader.c
+++ b/mail/e-mail-reader.c
@@ -656,7 +656,7 @@ action_mail_forward_cb (GtkAction *action,
g_ptr_array_set_free_func (uids, (GDestroyNotify) g_free);
if (em_utils_ask_open_many (window, uids->len))
- em_utils_forward_messages (
+ e_mail_reader_forward_messages (
reader, folder, uids,
e_mail_reader_get_forward_style (reader));
@@ -681,7 +681,7 @@ action_mail_forward_attached_cb (GtkAction *action,
g_ptr_array_set_free_func (uids, (GDestroyNotify) g_free);
if (em_utils_ask_open_many (window, uids->len))
- em_utils_forward_messages (
+ e_mail_reader_forward_messages (
reader, folder, uids,
E_MAIL_FORWARD_STYLE_ATTACHED);
@@ -706,7 +706,7 @@ action_mail_forward_inline_cb (GtkAction *action,
g_ptr_array_set_free_func (uids, (GDestroyNotify) g_free);
if (em_utils_ask_open_many (window, uids->len))
- em_utils_forward_messages (
+ e_mail_reader_forward_messages (
reader, folder, uids,
E_MAIL_FORWARD_STYLE_INLINE);
@@ -731,7 +731,7 @@ action_mail_forward_quoted_cb (GtkAction *action,
g_ptr_array_set_free_func (uids, (GDestroyNotify) g_free);
if (em_utils_ask_open_many (window, uids->len))
- em_utils_forward_messages (
+ e_mail_reader_forward_messages (
reader, folder, uids,
E_MAIL_FORWARD_STYLE_QUOTED);