diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-09-19 02:41:21 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-09-19 02:41:21 +0800 |
commit | 00d81264c73eebb83e911f3a0b80e3f00cc3701e (patch) | |
tree | 48c3d6a11700e7d707707bfb53a3d16562929afe /my-evolution/e-summary-mail.c | |
parent | 5a5022fd46edd2064c05d9191b1a0b6b71688b31 (diff) | |
download | gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.gz gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.bz2 gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.lz gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.xz gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.zst gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.zip |
Do appends instead of prepends in places.
Don't print a (null).
svn path=/trunk/; revision=12941
Diffstat (limited to 'my-evolution/e-summary-mail.c')
-rw-r--r-- | my-evolution/e-summary-mail.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/my-evolution/e-summary-mail.c b/my-evolution/e-summary-mail.c index a8f6d28ba1..2d3c2ef0e2 100644 --- a/my-evolution/e-summary-mail.c +++ b/my-evolution/e-summary-mail.c @@ -273,8 +273,6 @@ mail_change_notify (BonoboListener *listener, char *uri; uri = g_strconcat ("file://", p->data, NULL); - - g_print ("uri: %s\t%s\n", uri, folder->path); if (strcmp (uri, folder->path) == 0) { /* Regen HTML */ e_summary_mail_generate_html (summary); @@ -417,7 +415,7 @@ maybe_add_to_shown (gpointer key, uri = g_strconcat ("file://", p->data, NULL); if (strcmp (uri, folder->path) == 0) { - mail->shown = g_list_prepend (mail->shown, folder); + mail->shown = g_list_append (mail->shown, folder); } g_free (uri); |