aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-view.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-folder-view.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-folder-view.c')
-rw-r--r--mail/em-folder-view.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/em-folder-view.c b/mail/em-folder-view.c
index 355398e781..51d5eee890 100644
--- a/mail/em-folder-view.c
+++ b/mail/em-folder-view.c
@@ -1266,15 +1266,15 @@ emfv_message_reply(EMFolderView *emfv, int mode)
((GString *)state->user_data)->str,
((GString *)state->user_data)->len,
"text/html");
- em_utils_reply_to_message (msg, mode);
+ em_utils_reply_to_message (emfv->folder, emfv->list->cursor_uid, msg, mode);
camel_object_unref(msg);
} else {
- em_utils_reply_to_message_by_uid (emfv->folder, emfv->list->cursor_uid, mode);
+ em_utils_reply_to_message (emfv->folder, emfv->list->cursor_uid, NULL, mode);
}
html_engine_save_buffer_free(state);
} else {
- em_utils_reply_to_message_by_uid (emfv->folder, emfv->list->cursor_uid, mode);
+ em_utils_reply_to_message(emfv->folder, emfv->list->cursor_uid, NULL, mode);
}
}