aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-tasks.c
diff options
context:
space:
mode:
authorDamon Chaplin <damon@ximian.com>2001-08-22 03:45:53 +0800
committerDamon Chaplin <damon@src.gnome.org>2001-08-22 03:45:53 +0800
commit6d4625b3055cb6d0783677f963163d42f537f589 (patch)
tree40561ac86c5a643d842d119790a6833f956b3181 /my-evolution/e-summary-tasks.c
parent6b6dbf0a9b168e9fcf82cdac5c76aee355be8be3 (diff)
downloadgsoc2013-evolution-6d4625b3055cb6d0783677f963163d42f537f589.tar
gsoc2013-evolution-6d4625b3055cb6d0783677f963163d42f537f589.tar.gz
gsoc2013-evolution-6d4625b3055cb6d0783677f963163d42f537f589.tar.bz2
gsoc2013-evolution-6d4625b3055cb6d0783677f963163d42f537f589.tar.lz
gsoc2013-evolution-6d4625b3055cb6d0783677f963163d42f537f589.tar.xz
gsoc2013-evolution-6d4625b3055cb6d0783677f963163d42f537f589.tar.zst
gsoc2013-evolution-6d4625b3055cb6d0783677f963163d42f537f589.zip
changed the icons. For calendar events we use the 'new appointment' icon
2001-08-21 Damon Chaplin <damon@ximian.com> * e-summary-calendar.c (generate_html): * e-summary-tasks.c (generate_html): changed the icons. For calendar events we use the 'new appointment' icon from the menu. For tasks we use the task icon from the ETable - I wasn't sure about using the 'New Task' icon as it has a tick in it which may make people think it is complete. svn path=/trunk/; revision=12351
Diffstat (limited to 'my-evolution/e-summary-tasks.c')
-rw-r--r--my-evolution/e-summary-tasks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/my-evolution/e-summary-tasks.c b/my-evolution/e-summary-tasks.c
index 22428aa5ce..d83bbefe3c 100644
--- a/my-evolution/e-summary-tasks.c
+++ b/my-evolution/e-summary-tasks.c
@@ -246,12 +246,12 @@ generate_html (gpointer data)
cal_component_get_completed (comp, &completed);
if (completed == NULL) {
- tmp = g_strdup_printf ("<img align=\"middle\" src=\"es-appointments.png\" "
+ tmp = g_strdup_printf ("<img align=\"middle\" src=\"task.xpm\" "
"alt=\"\" width=\"16\" height=\"16\"> &#160; "
"<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\" "
+ tmp = g_strdup_printf ("<img align=\"middle\" src=\"task.xpm\" "
"alt=\"\" width=\"16\" height=\"16\"> &#160; "
"<font size=\"-1\"><strike><a href=\"evolution:/local/Tasks\">%s</a></strike></font><br>",
text.value);