aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-07-20 03:54:58 +0800
committerIain Holmes <iain@src.gnome.org>2001-07-20 03:54:58 +0800
commit13a1d6f61bb401bcee377c65736497c0f44fb3f5 (patch)
treeb4964f3bcc4ed724b2607d07775f0f9e588f3aae
parentdabcbedc2852c516db58a01a12b82575903c07fc (diff)
downloadgsoc2013-evolution-13a1d6f61bb401bcee377c65736497c0f44fb3f5.tar
gsoc2013-evolution-13a1d6f61bb401bcee377c65736497c0f44fb3f5.tar.gz
gsoc2013-evolution-13a1d6f61bb401bcee377c65736497c0f44fb3f5.tar.bz2
gsoc2013-evolution-13a1d6f61bb401bcee377c65736497c0f44fb3f5.tar.lz
gsoc2013-evolution-13a1d6f61bb401bcee377c65736497c0f44fb3f5.tar.xz
gsoc2013-evolution-13a1d6f61bb401bcee377c65736497c0f44fb3f5.tar.zst
gsoc2013-evolution-13a1d6f61bb401bcee377c65736497c0f44fb3f5.zip
Fix the mail folder links
svn path=/trunk/; revision=11231
-rw-r--r--my-evolution/ChangeLog4
-rw-r--r--my-evolution/e-summary-mail.c2
-rw-r--r--my-evolution/e-summary.c1
3 files changed, 5 insertions, 2 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index 3c75f051ef..8987f6975f 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,5 +1,9 @@
2001-07-19 Iain Holmes <iain@ximian.com>
+ * e-summary-mail.c (folder_gen_html): correct the folder name.
+
+2001-07-19 Iain Holmes <iain@ximian.com>
+
* my-evolution-html.h: Set the text colour to black. Frank was claiming
it picked the default colour from the GTK+ theme, and if it was white
bad things happened.
diff --git a/my-evolution/e-summary-mail.c b/my-evolution/e-summary-mail.c
index c3f8981add..12b6b4f2d3 100644
--- a/my-evolution/e-summary-mail.c
+++ b/my-evolution/e-summary-mail.c
@@ -76,7 +76,7 @@ folder_gen_html (ESummaryMailFolder *folder,
char *str, *pretty_name, *uri;
pretty_name = make_pretty_foldername (folder->name);
- uri = g_strconcat ("evolution:", folder->name, NULL);
+ uri = g_strconcat ("evolution:/local", folder->name, NULL);
str = g_strdup_printf ("<tr><td><a href=\"%s\"><pre>%s</pre></a></td><td align=\"Left\"><pre>%d/%d</pre></td></tr>",
uri, pretty_name, folder->unread, folder->count);
g_free (uri);
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c
index 0de680557a..40518b5eb5 100644
--- a/my-evolution/e-summary.c
+++ b/my-evolution/e-summary.c
@@ -543,7 +543,6 @@ e_summary_add_protocol_listener (ESummary *summary,
g_return_if_fail (listener != NULL);
if (summary->priv->protocol_hash == NULL) {
- g_print ("Creating\n");
summary->priv->protocol_hash = g_hash_table_new (g_str_hash,
g_str_equal);
old = NULL;