diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-07-10 00:49:30 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-07-10 00:49:30 +0800 |
commit | 84dd6b5536f10a266dcecf2754497257d4e8c984 (patch) | |
tree | 73758c2d38e7a74b0fbafd055ed53407b573f144 | |
parent | a9c8e8d5946c6c39c4d07b96ed04a414e67bd9cb (diff) | |
download | gsoc2013-evolution-84dd6b5536f10a266dcecf2754497257d4e8c984.tar gsoc2013-evolution-84dd6b5536f10a266dcecf2754497257d4e8c984.tar.gz gsoc2013-evolution-84dd6b5536f10a266dcecf2754497257d4e8c984.tar.bz2 gsoc2013-evolution-84dd6b5536f10a266dcecf2754497257d4e8c984.tar.lz gsoc2013-evolution-84dd6b5536f10a266dcecf2754497257d4e8c984.tar.xz gsoc2013-evolution-84dd6b5536f10a266dcecf2754497257d4e8c984.tar.zst gsoc2013-evolution-84dd6b5536f10a266dcecf2754497257d4e8c984.zip |
Make the tasks change to the tasks folder when clicked on
svn path=/trunk/; revision=10917
-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); } |