diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-05-15 02:07:30 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-15 02:07:30 +0800 |
commit | 1ce8c3b6b93193bb6559ba62291c4ec384312d5b (patch) | |
tree | 30f4f80f5866040987eb7a391ed6be62b2110ad3 /mail/em-popup.c | |
parent | 6f58e91a1c07f49aec286eb0bc80d06622b174b0 (diff) | |
download | gsoc2013-evolution-1ce8c3b6b93193bb6559ba62291c4ec384312d5b.tar.gz gsoc2013-evolution-1ce8c3b6b93193bb6559ba62291c4ec384312d5b.tar.zst gsoc2013-evolution-1ce8c3b6b93193bb6559ba62291c4ec384312d5b.zip |
Updated the #if 0'd code for the API chanegs made to
2004-05-14 Jeffrey Stedfast <fejj@novell.com>
* em-popup.c (emp_popup_resend): Updated the #if 0'd code for the
API chanegs made to em_utils_edit_messages().
* em-folder-view.c (em_folder_view_open_selected): Pass TRUE as
the replace argument to em_utils_edit_messages() here.
(emfv_popup_resend): Pass FALSE here. Fixes bug #58357.
* em-composer-utils.c (em_utils_edit_messages): Now takes a
'replace' argument specifying whether or not the original message
should be deleted when the edited message is sent or saved.
svn path=/trunk/; revision=25907
Diffstat (limited to 'mail/em-popup.c')
-rw-r--r-- | mail/em-popup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-popup.c b/mail/em-popup.c index 57c4264a82..6b08aa71fe 100644 --- a/mail/em-popup.c +++ b/mail/em-popup.c @@ -675,7 +675,7 @@ emp_popup_resend(GtkWidget *w, EMPopupTarget *t) if (!em_utils_check_user_can_send_mail(t->widget)) return; - em_utils_edit_messages(t->widget, t->data.select.folder, em_utils_uids_copy(t->data.select.uids)); + em_utils_edit_messages(t->widget, t->data.select.folder, em_utils_uids_copy(t->data.select.uids), FALSE); } static void |