diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-09-11 17:47:44 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-09-11 17:47:44 +0800 |
commit | 02e22e4cb913e8d020160235a0e43bf4fd18e019 (patch) | |
tree | 5b23c64a2b91ce4dc6f24d934d69a89d77d36ef6 /calendar/gui | |
parent | 2d6cd8ca1271a902fa84261b767199367d915c5e (diff) | |
download | gsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.tar.gz gsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.tar.zst gsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.zip |
Fixes #344276
svn path=/trunk/; revision=32755
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-cal-component-memo-preview.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |