aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-popup.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-07-26 14:33:23 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-07-26 14:33:23 +0800
commitd55e03c10c533d7e4027600fc1aa93e1d426dd5c (patch)
treeb0fb85dcfc8145f291d2dbde26d6395ff4cc88cc /mail/em-popup.c
parent0530326b7c3f68092c320b73fd323b1cb9dced9c (diff)
downloadgsoc2013-evolution-d55e03c10c533d7e4027600fc1aa93e1d426dd5c.tar
gsoc2013-evolution-d55e03c10c533d7e4027600fc1aa93e1d426dd5c.tar.gz
gsoc2013-evolution-d55e03c10c533d7e4027600fc1aa93e1d426dd5c.tar.bz2
gsoc2013-evolution-d55e03c10c533d7e4027600fc1aa93e1d426dd5c.tar.lz
gsoc2013-evolution-d55e03c10c533d7e4027600fc1aa93e1d426dd5c.tar.xz
gsoc2013-evolution-d55e03c10c533d7e4027600fc1aa93e1d426dd5c.tar.zst
gsoc2013-evolution-d55e03c10c533d7e4027600fc1aa93e1d426dd5c.zip
** See bug #61824.
2004-07-23 Not Zed <NotZed@Ximian.com> ** See bug #61824. * em-popup.c (emp_part_popup_reply_sender) (emp_part_popup_reply_list, emp_part_popup_reply_all): use new api. We have no uid/folder to update here. * em-folder-view.c (emfv_message_reply): use new api for replying so we can supply the message content and have flags updated. * em-composer-utils.c (em_utils_reply_to_message): added optional folder and uid. (em_utils_reply_to_message_by_uid): removed, use the other interface instead. (reply_to_message): just call reply_to_message if we get a message to reply to. (em_utils_reply_to_message): if no message supplied, load it via the uid. svn path=/trunk/; revision=26727
Diffstat (limited to 'mail/em-popup.c')
-rw-r--r--mail/em-popup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/em-popup.c b/mail/em-popup.c
index f4ed82e67e..d33bfe0e81 100644
--- a/mail/em-popup.c
+++ b/mail/em-popup.c
@@ -772,7 +772,7 @@ emp_part_popup_reply_sender (GtkWidget *w, EMPopupTarget *t)
CamelMimeMessage *message;
message = (CamelMimeMessage *) camel_medium_get_content_object ((CamelMedium *) t->data.part.part);
- em_utils_reply_to_message (message, REPLY_MODE_SENDER);
+ em_utils_reply_to_message (NULL, NULL, message, REPLY_MODE_SENDER);
}
static void
@@ -781,7 +781,7 @@ emp_part_popup_reply_list (GtkWidget *w, EMPopupTarget *t)
CamelMimeMessage *message;
message = (CamelMimeMessage *) camel_medium_get_content_object ((CamelMedium *) t->data.part.part);
- em_utils_reply_to_message (message, REPLY_MODE_LIST);
+ em_utils_reply_to_message (NULL, NULL, message, REPLY_MODE_LIST);
}
static void
@@ -790,7 +790,7 @@ emp_part_popup_reply_all (GtkWidget *w, EMPopupTarget *t)
CamelMimeMessage *message;
message = (CamelMimeMessage *) camel_medium_get_content_object ((CamelMedium *) t->data.part.part);
- em_utils_reply_to_message (message, REPLY_MODE_ALL);
+ em_utils_reply_to_message (NULL, NULL, message, REPLY_MODE_ALL);
}
static void