diff options
author | Not Zed <NotZed@Ximian.com> | 2003-10-30 13:03:28 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-10-30 13:03:28 +0800 |
commit | 8747a6919fbd4e318cceb8638f01d6f37e2d82f1 (patch) | |
tree | 50fb3b593a8669e43f90f9ed0a6d512c814d68d9 /mail/mail-component.c | |
parent | 066508d8f64ccb2d9da7a288800e82db6ff53e40 (diff) | |
download | gsoc2013-evolution-8747a6919fbd4e318cceb8638f01d6f37e2d82f1.tar gsoc2013-evolution-8747a6919fbd4e318cceb8638f01d6f37e2d82f1.tar.gz gsoc2013-evolution-8747a6919fbd4e318cceb8638f01d6f37e2d82f1.tar.bz2 gsoc2013-evolution-8747a6919fbd4e318cceb8638f01d6f37e2d82f1.tar.lz gsoc2013-evolution-8747a6919fbd4e318cceb8638f01d6f37e2d82f1.tar.xz gsoc2013-evolution-8747a6919fbd4e318cceb8638f01d6f37e2d82f1.tar.zst gsoc2013-evolution-8747a6919fbd4e318cceb8638f01d6f37e2d82f1.zip |
show application/x-pkcs7-mime inline always by default.
2003-10-30 Not Zed <NotZed@Ximian.com>
* em-format.c (em_format_is_inline): show application/x-pkcs7-mime
inline always by default.
2003-10-30 Not Zed <NotZed@Ximian.com>
* em-format.c (emf_multipart_signed): handle
application/x-pkcs7-signature.
2003-10-29 Not Zed <NotZed@Ximian.com>
* em-format-html.c (em_format_html_multipart_signed_sign): handle
application/x-pkcs7-signature.
* em-format.c (emf_application_xpkcs7mime): Handle
application/x-pkcs7-mime.
svn path=/trunk/; revision=23129
Diffstat (limited to 'mail/mail-component.c')
-rw-r--r-- | mail/mail-component.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mail/mail-component.c b/mail/mail-component.c index b278ecd46e..62f9489229 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -195,6 +195,19 @@ add_storage (MailComponent *component, g_signal_connect(storage, "async_open_folder", G_CALLBACK (storage_async_open_folder_callback), store); +#if 0 /* Some private test code - zed */ + { + static void *model; + + if (model == NULL) { + model = em_store_model_new(); + em_store_model_view_new(model); + } + + em_store_model_add_store(model, store); + } +#endif + #if 0 /* EPFIXME these are not needed anymore. */ g_signal_connect(storage, "create_folder", G_CALLBACK(storage_create_folder), store); |