diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-07-17 03:36:42 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-07-17 03:36:42 +0800 |
commit | f6e7f1d92068022f2edd5193710a74eafc81e6c9 (patch) | |
tree | 46eab1ee869ebd9bb240930c88c99fe41507d61e /mail | |
parent | 749286686bb9ac20e0466ec89154b86779f58fa7 (diff) | |
download | gsoc2013-evolution-f6e7f1d92068022f2edd5193710a74eafc81e6c9.tar gsoc2013-evolution-f6e7f1d92068022f2edd5193710a74eafc81e6c9.tar.gz gsoc2013-evolution-f6e7f1d92068022f2edd5193710a74eafc81e6c9.tar.bz2 gsoc2013-evolution-f6e7f1d92068022f2edd5193710a74eafc81e6c9.tar.lz gsoc2013-evolution-f6e7f1d92068022f2edd5193710a74eafc81e6c9.tar.xz gsoc2013-evolution-f6e7f1d92068022f2edd5193710a74eafc81e6c9.tar.zst gsoc2013-evolution-f6e7f1d92068022f2edd5193710a74eafc81e6c9.zip |
Let VTrash folders accept/export the same dnd types as normal folders.
2001-07-16 Jeffrey Stedfast <fejj@ximian.com>
* component-factory.c: Let VTrash folders accept/export the same
dnd types as normal folders.
svn path=/trunk/; revision=11134
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 44 | ||||
-rw-r--r-- | mail/component-factory.c | 2 |
2 files changed, 26 insertions, 20 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 7f3011dcad..1e4437b8f9 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,35 +1,41 @@ +2001-07-16 Jeffrey Stedfast <fejj@ximian.com> + + * component-factory.c: Let VTrash folders accept/export the same + dnd types as normal folders. + 2001-07-16 Peter Williams <peterw@ximian.com> - * mail-folder-cache.c (outbox_folder): prototype outbox_folder so we - can check if a folder is it. - (make_folder_name): If the folder is the outbox, display the count of - total messages as "unsent". - (make_folder_status): If the folder is the outbox, display "unsent" - instead of "total" + * mail-folder-cache.c (outbox_folder): prototype outbox_folder so + we can check if a folder is it. + (make_folder_name): If the folder is the outbox, display the count + of total messages as "unsent". + (make_folder_status): If the folder is the outbox, display + "unsent" instead of "total" 2001-07-16 Peter Williams <peterw@ximian.com> - * mail-display.c (mail_display_redisplay): Use our own display_style - member instead of the global setting. + * mail-display.c (mail_display_redisplay): Use our own + display_style member instead of the global setting. (mail_display_init): Initialize display_style. - * mail-display.h: Include "mail-config.h" and add a display_style member. + * mail-display.h: Include "mail-config.h" and add a display_style + member. - * mail-format.c (write_headers): Look at the MailDisplay's display_style - instead of using the full_headers data. + * mail-format.c (write_headers): Look at the MailDisplay's + display_style instead of using the full_headers data. * folder-browser.c (folder_browser_set_message_display_style): Set the MailDisplay's display style as well as the global display - style. - (my_folder_browser_init): Don't save preference changes by default. (This - is only observered wrt. the message display style but should apply to other - items.) + style. + (my_folder_browser_init): Don't save preference changes by + default. (This is only observered wrt. the message display style + but should apply to other items.) - * folder-browser-factory.c (folder_browser_factory_new_control): Set this - FB to save the preferences set in it. + * folder-browser-factory.c (folder_browser_factory_new_control): + Set this FB to save the preferences set in it. - * folder-browser-ui.c (folder_browser_ui_add_message): Read our display's - state instead of the global setting. + * folder-browser-ui.c (folder_browser_ui_add_message): Read our + display's state instead of the global setting. 2001-07-16 Peter Williams <peterw@ximian.com> diff --git a/mail/component-factory.c b/mail/component-factory.c index 8e958d6443..294506b670 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -92,7 +92,7 @@ static char *exported_dnd_types[] = { static const EvolutionShellComponentFolderType folder_types[] = { { "mail", "evolution-inbox.png", accepted_dnd_types, exported_dnd_types }, { "mailstorage", "evolution-inbox.png", NULL, NULL }, - { "vtrash", "evolution-trash.png", NULL, NULL }, + { "vtrash", "evolution-trash.png", accepted_dnd_types, exported_dnd_types }, { NULL, NULL, NULL, NULL } }; |