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/folder-browser.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/folder-browser.c')
-rw-r--r-- | mail/folder-browser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c index 9913363641..29509578ec 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -529,7 +529,7 @@ message_list_drag_data_received (ETree *tree, int row, ETreePath path, int col, } mail_transfer_messages (folder, uids, context->action == GDK_ACTION_MOVE, - fb->uri, NULL, NULL); + fb->uri, 0, NULL, NULL); camel_object_unref (CAMEL_OBJECT (folder)); break; @@ -640,7 +640,7 @@ selection_received (GtkWidget *widget, GtkSelectionData *selection_data, return; } - mail_transfer_messages (source, uids, FALSE, fb->uri, NULL, NULL); + mail_transfer_messages (source, uids, FALSE, fb->uri, 0, NULL, NULL); camel_object_unref (CAMEL_OBJECT (source)); } |