[Calendar] Fix for Bug #331029
Rajeev ramanathan <[email protected]>
| Newsgroups | gmane.comp.gnome.evolution.patches |
|---|---|
| Message-ID | <[email protected]> |
Hi, Sending patch for review Rajeev --------------------------------- Yahoo! Autos. Looking for a sweet ride? Get pricing, reviews, & more on new and used cars. _______________________________________________ Evolution-patches mailing list [email protected] http://mail.gnome.org/mailman/listinfo/evolution-patches
ampers.diff
(text/x-patch, 1.2 KB)
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 <[email protected]> + + **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 <[email protected]> * 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);