diff options
author | Shreyas Srinivasan <sshreyas@novell.com> | 2005-07-29 14:55:36 +0800 |
---|---|---|
committer | Shreyas Srinivasan <shres@src.gnome.org> | 2005-07-29 14:55:36 +0800 |
commit | e0d9ac81e99d88f3372a8ceb6f6eb6cfedff9bea (patch) | |
tree | 7f1b27b2b3b3ca919c14319047da9706b7989c1c /mail | |
parent | 0725cd0609c827984a9776bd9781f65d19adf001 (diff) | |
download | gsoc2013-evolution-e0d9ac81e99d88f3372a8ceb6f6eb6cfedff9bea.tar.gz gsoc2013-evolution-e0d9ac81e99d88f3372a8ceb6f6eb6cfedff9bea.tar.zst gsoc2013-evolution-e0d9ac81e99d88f3372a8ceb6f6eb6cfedff9bea.zip |
Fix #311223. Include <camel/camel-multipart.h> so that lazy binding does
2005-07-29 Shreyas Srinivasan <sshreyas@novell.com>
* mail-ops.c: Fix #311223. Include <camel/camel-multipart.h>
so that lazy binding does not fail on CAMEL_IS_MULTIPART.
svn path=/trunk/; revision=29934
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-ops.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index a690a168b5..107d8bae5c 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,10 @@ 2005-07-29 Shreyas Srinivasan <sshreyas@novell.com> + * mail-ops.c: Fix #311223. Include <camel/camel-multipart.h> + so that lazy binding does not fail on CAMEL_IS_MULTIPART. + +2005-07-29 Shreyas Srinivasan <sshreyas@novell.com> + * em-account-editor.c (emae_defaults_page): Fix #307358. Check if the provider type exists before senisitizing widgets. diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 846c251c41..e888ab1ed1 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -50,6 +50,7 @@ #include <camel/camel-vtrash-folder.h> #include <camel/camel-vee-store.h> #include <camel/camel-transport.h> +#include <camel/camel-multipart.h> #include "mail-component.h" #include "mail-config.h" |