diff options
-rw-r--r-- | my-evolution/ChangeLog | 5 | ||||
-rw-r--r-- | my-evolution/e-summary-tasks.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index ee3c6444b6..8c93c37ef4 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,8 @@ +2001-07-09 Iain Holmes <iain@ximian.com> + + * e-summary-tasks.c (generate_html): Make the tasks switch to the + tasks folder when you click on them. + 2001-07-09 Kjartan Maraas <kmaraas@gnome.org> * e-summary-preferences.c: Added #include <config.h> to get diff --git a/my-evolution/e-summary-tasks.c b/my-evolution/e-summary-tasks.c index b6058b46e6..2242351a86 100644 --- a/my-evolution/e-summary-tasks.c +++ b/my-evolution/e-summary-tasks.c @@ -192,12 +192,12 @@ generate_html (gpointer data) if (completed == NULL) { tmp = g_strdup_printf ("<img align=\"middle\" src=\"es-appointments.png\" " "alt=\"\" width=\"16\" height=\"16\">   " - "<font size=\"-1\"><a href=\"#\">%s</a></font><br>", + "<font size=\"-1\"><a href=\"evolution:/local/Tasks\">%s</a></font><br>", text.value); } else { tmp = g_strdup_printf ("<img align=\"middle\" src=\"es-appointments.png\" " "alt=\"\" width=\"16\" height=\"16\">   " - "<font size=\"-1\"><strike><a href=\"#\">%s</a></strike></font><br>", + "<font size=\"-1\"><strike><a href=\"evolution:/local/Tasks\">%s</a></strike></font><br>", text.value); } |