aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-tasks.c
diff options
context:
space:
mode:
authorJason Leach <jleach@ximian.com>2001-07-20 11:39:10 +0800
committerJacob Leach <jleach@src.gnome.org>2001-07-20 11:39:10 +0800
commit65a899cbd62be7579e5e29927f07699dd583b2d0 (patch)
tree1fdd310103ef0106764a94460d7fae0eca8eede2 /my-evolution/e-summary-tasks.c
parent4e5e5e5ea2b1d41f4075b65a86b3aabf2ae630c7 (diff)
downloadgsoc2013-evolution-65a899cbd62be7579e5e29927f07699dd583b2d0.tar
gsoc2013-evolution-65a899cbd62be7579e5e29927f07699dd583b2d0.tar.gz
gsoc2013-evolution-65a899cbd62be7579e5e29927f07699dd583b2d0.tar.bz2
gsoc2013-evolution-65a899cbd62be7579e5e29927f07699dd583b2d0.tar.lz
gsoc2013-evolution-65a899cbd62be7579e5e29927f07699dd583b2d0.tar.xz
gsoc2013-evolution-65a899cbd62be7579e5e29927f07699dd583b2d0.tar.zst
gsoc2013-evolution-65a899cbd62be7579e5e29927f07699dd583b2d0.zip
Update the evolution:/local/ URI's to evolution:/Local Folders/ to go
2001-07-19 Jason Leach <jleach@ximian.com> * e-summary-tasks.c: Update the evolution:/local/ URI's to evolution:/Local Folders/ to go along with todays shell changes. * e-summary-mail.c: Ditto. * e-summary-calendar.c: Ditto. svn path=/trunk/; revision=11252
Diffstat (limited to 'my-evolution/e-summary-tasks.c')
-rw-r--r--my-evolution/e-summary-tasks.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/my-evolution/e-summary-tasks.c b/my-evolution/e-summary-tasks.c
index 27ef1a4cbe..da4030f871 100644
--- a/my-evolution/e-summary-tasks.c
+++ b/my-evolution/e-summary-tasks.c
@@ -206,7 +206,7 @@ generate_html (gpointer data)
s2 = e_utf8_from_locale_string (_("No tasks"));
g_free (tasks->html);
tasks->html = g_strconcat ("<dl><dt><img src=\"ico-calendar.png\" align=\"middle\" "
- "alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/local/Tasks\">",
+ "alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/Local Folders/Tasks\">",
s1, "</a></b></dt><dd><b>", s2, "</b></dd></dl>", NULL);
g_free (s1);
g_free (s2);
@@ -217,7 +217,7 @@ generate_html (gpointer data)
char *s;
string = g_string_new ("<dl><dt><img src=\"ico-calendar.png\" align=\"middle\" "
- "alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/local/Tasks\">");
+ "alt=\"\" width=\"48\" height=\"48\"> <b><a href=\"evolution:/Local Folders/Tasks\">");
s = e_utf8_from_locale_string (_("Tasks"));
g_string_append (string, s);
g_free (s);
@@ -241,12 +241,12 @@ generate_html (gpointer data)
if (completed == NULL) {
tmp = g_strdup_printf ("<img align=\"middle\" src=\"es-appointments.png\" "
"alt=\"\" width=\"16\" height=\"16\"> &#160; "
- "<font size=\"-1\"><a href=\"evolution:/local/Tasks\">%s</a></font><br>",
+ "<font size=\"-1\"><a href=\"evolution:/Local Folders/Tasks\">%s</a></font><br>",
text.value);
} else {
tmp = g_strdup_printf ("<img align=\"middle\" src=\"es-appointments.png\" "
"alt=\"\" width=\"16\" height=\"16\"> &#160; "
- "<font size=\"-1\"><strike><a href=\"evolution:/local/Tasks\">%s</a></strike></font><br>",
+ "<font size=\"-1\"><strike><a href=\"evolution:/Local Folders/Tasks\">%s</a></strike></font><br>",
text.value);
}