diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-05-11 12:27:35 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-05-11 12:27:35 +0800 |
commit | 59c9d146b95fdf399b64971d6b86d9e8a5474157 (patch) | |
tree | b53a6c5bcea1ca1c1c749018fdcd2fcad0207852 /mail/mail-format.c | |
parent | fce621fd558b52b3bdcca568af4c2676ba2e461c (diff) | |
download | gsoc2013-evolution-59c9d146b95fdf399b64971d6b86d9e8a5474157.tar gsoc2013-evolution-59c9d146b95fdf399b64971d6b86d9e8a5474157.tar.gz gsoc2013-evolution-59c9d146b95fdf399b64971d6b86d9e8a5474157.tar.bz2 gsoc2013-evolution-59c9d146b95fdf399b64971d6b86d9e8a5474157.tar.lz gsoc2013-evolution-59c9d146b95fdf399b64971d6b86d9e8a5474157.tar.xz gsoc2013-evolution-59c9d146b95fdf399b64971d6b86d9e8a5474157.tar.zst gsoc2013-evolution-59c9d146b95fdf399b64971d6b86d9e8a5474157.zip |
Use the ESearchingTokenizer to highlight search matches for folder-level
2001-05-10 Jon Trowbridge <trow@ximian.com>
* folder-browser.c (folder_browser_config_search): Use the
ESearchingTokenizer to highlight search matches for folder-level
searches. Still mildly broken, but it works for the simple cases.
* mail-display.c (mail_display_new): Use our ESearchingTokenizer
for the mail display GtkHTML widget.
* mail-search.c (dialog_clicked_cb): Use the ESearchingTokenizer to
highlight search matches.
(mail_search_construct): Add a match count to the search dialog.
* e-searching-tokenizer.c
(e_searching_tokenizer_set_search_string): Added. A custom HTML
tokenizer that does highlighting of search strings.
svn path=/trunk/; revision=9754
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index 5e5975f211..5ffb7d48b5 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -738,7 +738,7 @@ write_headers (CamelMimeMessage *message, MailDisplay *md) "<table bgcolor=\"#000000\" width=\"100%%\" " "cellspacing=0 cellpadding=1><tr><td>" "<table bgcolor=\"#EEEEEE\" width=\"100%%\" cellpadding=0 cellspacing=0>" - "<tr><td><table>\n"); + "<tr><td><table>"); write_address(md, camel_mime_message_get_from(message), _("From:"), WRITE_BOLD); |