Index: ChangeLog =================================================================== RCS file: /cvs/gnome/evolution/calendar/ChangeLog,v retrieving revision 1.2973 diff -u -p -r1.2973 ChangeLog --- ChangeLog 31 Jan 2006 09:12:12 -0000 1.2973 +++ ChangeLog 14 Feb 2006 04:15:47 -0000 @@ -1,3 +1,10 @@ +2006-02-14 Rajeev ramanathan <rajeevramanathan_2004 yahoo co in> + + **Fixes #331029 + + * gui/e-calendar-view.c: (e_calendar_view_get_tooltips): Modified code + to display summary in tooltip even if summary is &. + 2006-01-31 Tor Lillqvist <tml novell com> * gui/alarm-notify/alarm-queue.c (open_alarm_dialog, Index: gui/e-calendar-view.c =================================================================== RCS file: /cvs/gnome/evolution/calendar/gui/e-calendar-view.c,v retrieving revision 1.114 diff -u -p -r1.114 e-calendar-view.c --- gui/e-calendar-view.c 23 Jan 2006 06:45:03 -0000 1.114 +++ gui/e-calendar-view.c 14 Feb 2006 04:15:53 -0000 @@ -2018,7 +2018,7 @@ e_calendar_view_get_tooltips (ECalendarV return FALSE; } - tmp = g_strdup_printf ("<b>%s</b>", str); + tmp = g_markup_printf_escaped ("<b>%s</b>", str); label = gtk_label_new (NULL); gtk_label_set_line_wrap ((GtkLabel *)label, TRUE); gtk_label_set_markup ((GtkLabel *)label, tmp);