diff options
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-cal-component-memo-preview.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 1b1f5d7194..327928a4c5 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2006-09-11 Chenthill Palanisamy <pchenthill@novell.com> + + Fixes #344276 + * gui/e-cal-component-memo-preview.c: (write_html): made + the memo preview work fine with special char. + Committing on behalf of Arvind <sa.phoenix@gmail.com>. + 2006-09-08 Chenthill Palanisamy <pchenthill@novell.com> Fixes #343409 diff --git a/calendar/gui/e-cal-component-memo-preview.c b/calendar/gui/e-cal-component-memo-preview.c index 1dd9dee782..9f235b16f4 100644 --- a/calendar/gui/e-cal-component-memo-preview.c +++ b/calendar/gui/e-cal-component-memo-preview.c @@ -235,7 +235,7 @@ write_html (GtkHTMLStream *stream, ECal *ecal, ECalComponent *comp, icaltimezone string = g_string_append_c (string, text.value[i]); } - gtk_html_stream_printf (stream, string->str); + gtk_html_stream_printf (stream,"%s", string->str); g_string_free (string, TRUE); } |