diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-06-19 00:06:34 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-06-19 00:06:34 +0800 |
commit | 60fe445b0c4b06329f5277a4881c203f6be38919 (patch) | |
tree | b7988515ae2c5a6fd4b069ab0c4c906a553c85bb /mail/component-factory.c | |
parent | 588e18f2023cf8be70efba89e85cb2dc16ee99a0 (diff) | |
download | gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.gz gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.bz2 gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.lz gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.xz gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.tar.zst gsoc2013-evolution-60fe445b0c4b06329f5277a4881c203f6be38919.zip |
Change the drop-type "x-evolution-dnd" to "x-evolution-message" since we
2001-06-18 Jeffrey Stedfast <fejj@ximian.com>
* component-factory.c: Change the drop-type "x-evolution-dnd" to
"x-evolution-message" since we want to be able to DnD more than
one data type ;-)
* folder-browser.c: Change supported DnD drop types to disclude
URI_LIST as that seems to crash Nautilus and seems overly
complicated. Since I am going to be supporting message/rfc822,
hopefully Nautilus can handle that or else maybe something like
text/plain.
(message_list_drag_data_get): Remove the code for URI_LIST.
svn path=/trunk/; revision=10264
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 4a7a4131a7..fc9c3649e7 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -68,7 +68,7 @@ static GHashTable *storages_hash; static char *accepted_dnd_types[] = { "message/rfc822", /* if we drag from nautilus or something... */ - "x-evolution-dnd", /* if we drag from an evolution folder... */ + "x-evolution-message", /* if we drag from an evolution message list... */ NULL }; @@ -344,7 +344,7 @@ destination_folder_handle_drop (EvolutionShellComponentDndDestinationFolder *fol retval = message_rfc822_dnd (folder, stream); camel_object_unref (CAMEL_OBJECT (stream)); } else { - /* x-evolution-dnd */ + /* x-evolution-message */ char *url, *name, *in, *inptr, *inend; CamelFolder *source; GPtrArray *uids; |