diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-08-22 03:23:44 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-08-22 03:23:44 +0800 |
commit | 828a1077206a22132eccb3138d937d5c255d7f10 (patch) | |
tree | 8bd532bf6e7a183cfd6deb93f6e172f95ce5e953 /mail/mail-format.c | |
parent | 577c14751f5305ab925af567082b0f71f3616d18 (diff) | |
download | gsoc2013-evolution-828a1077206a22132eccb3138d937d5c255d7f10.tar.gz gsoc2013-evolution-828a1077206a22132eccb3138d937d5c255d7f10.tar.zst gsoc2013-evolution-828a1077206a22132eccb3138d937d5c255d7f10.zip |
Don't bother overloading the timeout virtual methods since they don't
2002-08-21 Jeffrey Stedfast <fejj@ximian.com>
* mail-session.c (class_init): Don't bother overloading the
timeout virtual methods since they don't exist anymore.
* mail-folder-cache.c (mail_note_store): Register a ping timeout
callback to ping each store to keep the connections alive.
svn path=/trunk/; revision=17831
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index 5e41298c32..00e4c4ee23 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1505,8 +1505,8 @@ handle_text_enriched (CamelMimePart *part, const char *mime_type, GString *string; if (!translations) { - translations = g_hash_table_new (g_strcase_hash, - g_strcase_equal); + translations = g_hash_table_new (g_strcase_hash, g_strcase_equal); + g_hash_table_insert (translations, "bold", "<b>"); g_hash_table_insert (translations, "/bold", "</b>"); g_hash_table_insert (translations, "italic", "<i>"); |