diff options
Diffstat (limited to 'my-evolution')
-rw-r--r-- | my-evolution/ChangeLog | 9 | ||||
-rw-r--r-- | my-evolution/e-summary-calendar.c | 2 | ||||
-rw-r--r-- | my-evolution/e-summary-tasks.c | 4 |
3 files changed, 12 insertions, 3 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index d885d16340..ad186ce755 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,12 @@ +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. + 2001-08-19 Ettore Perazzoli <ettore@ximian.com> * component-factory.c: Change the type from "Summary" to "summary" diff --git a/my-evolution/e-summary-calendar.c b/my-evolution/e-summary-calendar.c index 55a8bb40ef..ca7b8bacab 100644 --- a/my-evolution/e-summary-calendar.c +++ b/my-evolution/e-summary-calendar.c @@ -240,7 +240,7 @@ generate_html (gpointer data) strftime (start_str, 19, _("%d %B"), start_tm); } - tmp = g_strdup_printf ("<img align=\"middle\" src=\"es-appointments.png\" " + tmp = g_strdup_printf ("<img align=\"middle\" src=\"new_appointment.xpm\" " "alt=\"\" width=\"16\" height=\"16\">   " "<font size=\"-1\"><a href=\"evolution:/local/Calendar\">%s, %s</a></font><br>", start_str, text.value); 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\">   " "<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\">   " "<font size=\"-1\"><strike><a href=\"evolution:/local/Tasks\">%s</a></strike></font><br>", text.value); |