aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-09-11 17:47:44 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-09-11 17:47:44 +0800
commit02e22e4cb913e8d020160235a0e43bf4fd18e019 (patch)
tree5b23c64a2b91ce4dc6f24d934d69a89d77d36ef6
parent2d6cd8ca1271a902fa84261b767199367d915c5e (diff)
downloadgsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.tar
gsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.tar.gz
gsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.tar.bz2
gsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.tar.lz
gsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.tar.xz
gsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.tar.zst
gsoc2013-evolution-02e22e4cb913e8d020160235a0e43bf4fd18e019.zip
Fixes #344276
svn path=/trunk/; revision=32755
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/e-cal-component-memo-preview.c2
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);
}