diff options
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); |