From b352ba9c53b6e279305d9cb94c18c28461324da3 Mon Sep 17 00:00:00 2001 From: Suman Manjunath Date: Mon, 1 Sep 2008 03:47:35 +0000 Subject: Patch from Paul Bolle : Fix for bug #549661 (Process DND correctly when a mail message is dragged from outside Evolution to a folder in the sidebar). svn path=/trunk/; revision=36236 --- mail/ChangeLog | 8 ++++++++ mail/em-folder-tree.c | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index fab37b402d..6ce45afb7f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,11 @@ +2008-09-01 Paul Bolle + + ** Fix for bug #549661 + + * em-folder-tree.c: (emft_drop_async__exec): Use + em_utils_selection_get_urilist() for DND_DROP_TYPE_TEXT_URI_LIST (and + not em_utils_selection_get_mailbox()). + 2008-08-31 Matthew Barnes ** Fix bug #544430 diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c index e7cbd0c75b..6d887be3c8 100644 --- a/mail/em-folder-tree.c +++ b/mail/em-folder-tree.c @@ -937,7 +937,7 @@ emft_drop_async__exec (struct _DragDataReceivedAsync *m) break; case DND_DROP_TYPE_TEXT_URI_LIST: /* import an mbox, maildir, or mh folder? */ - em_utils_selection_get_mailbox(m->selection, folder); + em_utils_selection_get_urilist(m->selection, folder); break; default: abort(); -- cgit v1.2.3