diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-10-03 06:45:24 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-10-03 06:45:24 +0800 |
commit | 378422f6e180da04a033a2783d7806a848f90385 (patch) | |
tree | e8fdedc83622e2cebb693fcc3b9f5de1305c056a /mail/mail-callbacks.c | |
parent | 3cfa7824a8c01c979621965131319a8073f064ed (diff) | |
download | gsoc2013-evolution-378422f6e180da04a033a2783d7806a848f90385.tar.gz gsoc2013-evolution-378422f6e180da04a033a2783d7806a848f90385.tar.zst gsoc2013-evolution-378422f6e180da04a033a2783d7806a848f90385.zip |
Pass an empty flags argument to mail_transfer_messages - destination
2001-10-02 Jeffrey Stedfast <fejj@ximian.com>
* mail-callbacks.c (transfer_msg): Pass an empty flags argument to
mail_transfer_messages - destination folder should already be
created by this point.
* folder-browser.c (message_list_drag_data_received): Pass an
empty flags argument to mail_transfer_messages.
(selection_received): Same.
* component-factory.c (xfer_folder): Pass the CREATE flag to
mail_transfer_messages() so that the dest folder gets created.
(destination_folder_handle_drop): Update for mail-ops API change.
* mail-ops.c (mail_transfer_messages): Now takes a dest_flags
argument that it passes along to mail_tool_uri_to_folder when
opening the destination folder.
svn path=/trunk/; revision=13357
Diffstat (limited to 'mail/mail-callbacks.c')
-rw-r--r-- | mail/mail-callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index 449b21f35c..7ed4505918 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -1187,7 +1187,7 @@ transfer_msg (GtkWidget *widget, gpointer user_data, gboolean delete_from_source uids = g_ptr_array_new (); message_list_foreach (ml, enumerate_msg, uids); mail_transfer_messages (ml->folder, uids, delete_from_source, - physical, NULL, NULL); + physical, 0, NULL, NULL); } void |