diff options
author | Gediminas Paulauskas <menesis@delfi.lt> | 2001-05-03 04:51:10 +0800 |
---|---|---|
committer | Gediminas Paulauskas <menesis@src.gnome.org> | 2001-05-03 04:51:10 +0800 |
commit | af8abf4f2dc7055756265744319dd7354f0310ce (patch) | |
tree | d3412d4c041404ca02026da6235e9e792e1c282f | |
parent | c5efeb1bb252beda6a74817e6c00283b56ab9e11 (diff) | |
download | gsoc2013-evolution-af8abf4f2dc7055756265744319dd7354f0310ce.tar gsoc2013-evolution-af8abf4f2dc7055756265744319dd7354f0310ce.tar.gz gsoc2013-evolution-af8abf4f2dc7055756265744319dd7354f0310ce.tar.bz2 gsoc2013-evolution-af8abf4f2dc7055756265744319dd7354f0310ce.tar.lz gsoc2013-evolution-af8abf4f2dc7055756265744319dd7354f0310ce.tar.xz gsoc2013-evolution-af8abf4f2dc7055756265744319dd7354f0310ce.tar.zst gsoc2013-evolution-af8abf4f2dc7055756265744319dd7354f0310ce.zip |
I commited patches to mail and calendar summary which relied on this, but forgot
this file :(
2001-05-02 Gediminas Paulauskas <menesis@delfi.lt>
* component/e-summary.c: set default content type of html to
"text/html; charset=utf-8".
svn path=/trunk/; revision=9651
-rw-r--r-- | executive-summary/ChangeLog | 5 | ||||
-rw-r--r-- | executive-summary/component/e-summary.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/executive-summary/ChangeLog b/executive-summary/ChangeLog index d5788e2a1e..16c7975314 100644 --- a/executive-summary/ChangeLog +++ b/executive-summary/ChangeLog @@ -1,3 +1,8 @@ +2001-05-02 Gediminas Paulauskas <menesis@delfi.lt> + + * component/e-summary.c: set default content type of html to + "text/html; charset=utf-8". + 2001-04-25 Dan Winship <danw@ximian.com> * idl/Makefile.am (INCLUDES): Remove this section, which doesn't diff --git a/executive-summary/component/e-summary.c b/executive-summary/component/e-summary.c index 64866318ac..a667c0c9f2 100644 --- a/executive-summary/component/e-summary.c +++ b/executive-summary/component/e-summary.c @@ -224,6 +224,8 @@ e_summary_init (ESummary *esummary) GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); priv->html = gtk_html_new (); gtk_html_set_editable (GTK_HTML (priv->html), FALSE); + gtk_html_set_default_content_type (GTK_HTML (priv->html), + "text/html; charset=utf-8"); gtk_html_set_default_background_color (GTK_HTML (priv->html), &bgcolour); gtk_signal_connect (GTK_OBJECT (priv->html), "url-requested", GTK_SIGNAL_FUNC (e_summary_url_request), esummary); |