diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-09-01 11:47:35 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-09-01 11:47:35 +0800 |
commit | b352ba9c53b6e279305d9cb94c18c28461324da3 (patch) | |
tree | 927415fc5fbf31b440b550e72faa89ea374a04a5 /mail | |
parent | e4aa7be1571c5b2c00f62327a355552a65c63290 (diff) | |
download | gsoc2013-evolution-b352ba9c53b6e279305d9cb94c18c28461324da3.tar.gz gsoc2013-evolution-b352ba9c53b6e279305d9cb94c18c28461324da3.tar.zst gsoc2013-evolution-b352ba9c53b6e279305d9cb94c18c28461324da3.zip |
Patch from Paul Bolle <pebolle@tiscali.nl>: 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
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 8 | ||||
-rw-r--r-- | mail/em-folder-tree.c | 2 |
2 files changed, 9 insertions, 1 deletions
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 <pebolle@tiscali.nl> + + ** 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 <mbarnes@redhat.com> ** 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(); |