diff options
author | Not Zed <NotZed@Ximian.com> | 2004-07-26 14:33:23 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-07-26 14:33:23 +0800 |
commit | d55e03c10c533d7e4027600fc1aa93e1d426dd5c (patch) | |
tree | b0fb85dcfc8145f291d2dbde26d6395ff4cc88cc /mail/em-composer-utils.h | |
parent | 0530326b7c3f68092c320b73fd323b1cb9dced9c (diff) | |
download | gsoc2013-evolution-d55e03c10c533d7e4027600fc1aa93e1d426dd5c.tar.gz 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-composer-utils.h')
-rw-r--r-- | mail/em-composer-utils.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mail/em-composer-utils.h b/mail/em-composer-utils.h index df92a3f0c2..df971784fd 100644 --- a/mail/em-composer-utils.h +++ b/mail/em-composer-utils.h @@ -68,8 +68,7 @@ enum { REPLY_MODE_LIST }; -void em_utils_reply_to_message (struct _CamelMimeMessage *message, int mode); -void em_utils_reply_to_message_by_uid (struct _CamelFolder *folder, const char *uid, int mode); +void em_utils_reply_to_message (struct _CamelFolder *, const char *uid, struct _CamelMimeMessage *message, int mode); void em_utils_post_reply_to_message_by_uid (struct _CamelFolder *folder, const char *uid); |