From 00d81264c73eebb83e911f3a0b80e3f00cc3701e Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Tue, 18 Sep 2001 18:41:21 +0000 Subject: Do appends instead of prepends in places. Don't print a (null). svn path=/trunk/; revision=12941 --- my-evolution/e-summary-mail.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'my-evolution/e-summary-mail.c') 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); -- cgit v1.2.3