diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-04-15 01:58:23 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-15 01:58:23 +0800 |
commit | ca60f3518a015f4adf85de851f119d986227fb75 (patch) | |
tree | 89cf5927e6c6a0e601526bf30db8e4c38538d4fa /mail | |
parent | fea1c47a5742f84561a4ec793f1f9b17ee9f29ae (diff) | |
download | gsoc2013-evolution-ca60f3518a015f4adf85de851f119d986227fb75.tar.gz gsoc2013-evolution-ca60f3518a015f4adf85de851f119d986227fb75.tar.zst gsoc2013-evolution-ca60f3518a015f4adf85de851f119d986227fb75.zip |
Don't complain about message errors ("Internal Error: ..."), instead
2004-04-14 Jeffrey Stedfast <fejj@ximian.com>
* em-format.c: Don't complain about message errors ("Internal
Error: ..."), instead silently fall back to display the message as
source. Fixes bug #56876.
svn path=/trunk/; revision=25464
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/em-format.c | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index aba87e47a2..dee21a5be1 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2004-04-14 Jeffrey Stedfast <fejj@ximian.com> + + * em-format.c: Don't complain about message errors ("Internal + Error: ..."), instead silently fall back to display the message as + source. Fixes bug #56876. + 2004-04-14 Not Zed <NotZed@Ximian.com> * em-folder-view.c (emfv_set_folder_uri): ugh, use the queued diff --git a/mail/em-format.c b/mail/em-format.c index 1d67abbcc2..0894669a15 100644 --- a/mail/em-format.c +++ b/mail/em-format.c @@ -1082,7 +1082,6 @@ emf_multipart_appledouble(EMFormat *emf, CamelStream *stream, CamelMimePart *par int len; if (!CAMEL_IS_MULTIPART(mp)) { - em_format_format_error(emf, stream, _("Internal error: expecting CamelMultipart, got \"%s\""), ((CamelObject *)mp)->klass->name); em_format_format_source(emf, stream, part); return; } @@ -1102,7 +1101,6 @@ emf_multipart_mixed(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con int i, nparts, len; if (!CAMEL_IS_MULTIPART(mp)) { - em_format_format_error(emf, stream, _("Internal error: expecting CamelMultipart, got \"%s\""), ((CamelObject *)mp)->klass->name); em_format_format_source(emf, stream, part); return; } @@ -1126,7 +1124,6 @@ emf_multipart_alternative(EMFormat *emf, CamelStream *stream, CamelMimePart *par CamelMimePart *best = NULL; if (!CAMEL_IS_MULTIPART(mp)) { - em_format_format_error(emf, stream, _("Internal error: expecting CamelMultipart, got \"%s\""), ((CamelObject *)mp)->klass->name); em_format_format_source(emf, stream, part); return; } @@ -1219,7 +1216,6 @@ emf_multipart_related(EMFormat *emf, CamelStream *stream, CamelMimePart *part, c EMFormatPURI *puri, *purin; if (!CAMEL_IS_MULTIPART(mp)) { - em_format_format_error(emf, stream, _("Internal error: expecting CamelMultipart, got \"%s\""), ((CamelObject *)mp)->klass->name); em_format_format_source(emf, stream, part); return; } @@ -1368,7 +1364,6 @@ emf_message_rfc822(EMFormat *emf, CamelStream *stream, CamelMimePart *part, cons int len; if (!CAMEL_IS_MIME_MESSAGE(dw)) { - em_format_format_error(emf, stream, _("Internal error: expecting CamelMimeMessage, got \"%s\""), ((CamelObject *)dw)->klass->name); em_format_format_source(emf, stream, part); return; } |