aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/em-folder-tree.c')
-rw-r--r--mail/em-folder-tree.c20
1 files changed, 1 insertions, 19 deletions
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c
index 21baa41bb6..c4e4d7ff04 100644
--- a/mail/em-folder-tree.c
+++ b/mail/em-folder-tree.c
@@ -929,24 +929,6 @@ emft_drop_async_drop (struct _mail_msg *mm)
}
static void
-emft_drop_async_done (struct _mail_msg *mm)
-{
- struct _DragDataReceivedAsync *m = (struct _DragDataReceivedAsync *) mm;
- gboolean success, delete;
-
- /* ?? */
- if (m->aborted) {
- success = FALSE;
- delete = FALSE;
- } else {
- success = !camel_exception_is_set (&mm->ex);
- delete = success && m->move && !m->moved;
- }
-
- gtk_drag_finish (m->context, success, delete, GDK_CURRENT_TIME);
-}
-
-static void
emft_drop_async_free (struct _mail_msg *mm)
{
struct _DragDataReceivedAsync *m = (struct _DragDataReceivedAsync *) mm;
@@ -962,7 +944,7 @@ emft_drop_async_free (struct _mail_msg *mm)
static struct _mail_msg_op emft_drop_async_op = {
emft_drop_async_desc,
emft_drop_async_drop,
- emft_drop_async_done,
+ NULL,
emft_drop_async_free,
};