diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-04-01 08:02:13 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-04-01 08:12:48 +0800 |
commit | 55d6580d8627a9a85df1e6b19529196d4d9ac95a (patch) | |
tree | 44ca6fbf16d4be1bace23baa9892f61560eb3fb4 /mail/em-format-hook.c | |
parent | f91c4d78082e75b66bd394840670a88be09ec63c (diff) | |
download | gsoc2013-evolution-55d6580d8627a9a85df1e6b19529196d4d9ac95a.tar.gz gsoc2013-evolution-55d6580d8627a9a85df1e6b19529196d4d9ac95a.tar.zst gsoc2013-evolution-55d6580d8627a9a85df1e6b19529196d4d9ac95a.zip |
Stop relying on CamelObject meta-data.
Diffstat (limited to 'mail/em-format-hook.c')
-rw-r--r-- | mail/em-format-hook.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/em-format-hook.c b/mail/em-format-hook.c index 78c46d99b4..cab253f24a 100644 --- a/mail/em-format-hook.c +++ b/mail/em-format-hook.c @@ -66,7 +66,8 @@ static void emfh_format_format (EMFormat *md, CamelStream *stream, CamelMimePart *part, - const EMFormatHandler *info) + const EMFormatHandler *info, + gboolean is_fallback) { struct _EMFormatHookItem *item = (EMFormatHookItem *)info; @@ -77,7 +78,7 @@ emfh_format_format (EMFormat *md, e_plugin_invoke(item->hook->hook.plugin, item->format, &target); } else if (info->old) { - info->old->handler(md, stream, part, info->old); + info->old->handler(md, stream, part, info->old, FALSE); } } |