aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/e-mail-formatter-quote.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-05-18 23:02:20 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-05-20 01:07:20 +0800
commit5fd22430809036acf607d3d3cd5f4b32c1f1cc81 (patch)
tree460fd37581efc61e5e0caf5772fb26bedbd6a25b /em-format/e-mail-formatter-quote.c
parent366b731a169ac54a0407f5d85879c38ba463398a (diff)
downloadgsoc2013-evolution-5fd22430809036acf607d3d3cd5f4b32c1f1cc81.tar
gsoc2013-evolution-5fd22430809036acf607d3d3cd5f4b32c1f1cc81.tar.gz
gsoc2013-evolution-5fd22430809036acf607d3d3cd5f4b32c1f1cc81.tar.bz2
gsoc2013-evolution-5fd22430809036acf607d3d3cd5f4b32c1f1cc81.tar.lz
gsoc2013-evolution-5fd22430809036acf607d3d3cd5f4b32c1f1cc81.tar.xz
gsoc2013-evolution-5fd22430809036acf607d3d3cd5f4b32c1f1cc81.tar.zst
gsoc2013-evolution-5fd22430809036acf607d3d3cd5f4b32c1f1cc81.zip
Add e_mail_part_id_has_suffix().
Diffstat (limited to 'em-format/e-mail-formatter-quote.c')
-rw-r--r--em-format/e-mail-formatter-quote.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/em-format/e-mail-formatter-quote.c b/em-format/e-mail-formatter-quote.c
index f810f231a7..837b810267 100644
--- a/em-format/e-mail-formatter-quote.c
+++ b/em-format/e-mail-formatter-quote.c
@@ -105,12 +105,12 @@ mail_formatter_quote_run (EMailFormatter *formatter,
for (link = head; link != NULL; link = g_list_next (link)) {
EMailPart *part = E_MAIL_PART (link->data);
- if (g_str_has_suffix (part->id, ".headers") &&
+ if (e_mail_part_id_has_suffix (part, ".headers") &&
!(qf_context->qf_flags & E_MAIL_FORMATTER_QUOTE_FLAG_HEADERS)) {
continue;
}
- if (g_str_has_suffix (part->id, ".rfc822")) {
+ if (e_mail_part_id_has_suffix (part, ".rfc822")) {
link = e_mail_formatter_find_rfc822_end_iter (link);
continue;
}