diff options
author | Larry Ewing <lewing@ximian.com> | 2001-10-11 05:04:29 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2001-10-11 05:04:29 +0800 |
commit | 82b63c067c1e3e1b7018154e3c6c05f96956fbdd (patch) | |
tree | 3b2fddd16a3de94cbd40f3de079a8de026947092 /calendar | |
parent | 7e628d1745b79a7af4529d9cb2c2957613e1328a (diff) | |
download | gsoc2013-evolution-82b63c067c1e3e1b7018154e3c6c05f96956fbdd.tar.gz gsoc2013-evolution-82b63c067c1e3e1b7018154e3c6c05f96956fbdd.tar.zst gsoc2013-evolution-82b63c067c1e3e1b7018154e3c6c05f96956fbdd.zip |
set the default character set to utf-8.
2001-10-10 Larry Ewing <lewing@ximian.com>
* gui/e-itip-control.c (init): set the default character set to
utf-8.
svn path=/trunk/; revision=13568
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 77f93c9f9f..ca4d2d7816 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2001-10-10 Larry Ewing <lewing@ximian.com> + + * gui/e-itip-control.c (init): set the default character set to + utf-8. + 2001-10-10 Federico Mena Quintero <federico@ximian.com> * pcs/cal-factory.c (lookup_backend): Return the original key in diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 1f26c5d765..eaf6df4ec7 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -1,3 +1,6 @@ + + + /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* e-itip-control.c * @@ -243,6 +246,9 @@ init (EItipControl *itip) /* Html Widget */ priv->html = gtk_html_new (); + gtk_html_set_default_content_type (priv->html, + "text/html; charset=utf-8"); + gtk_widget_show (priv->html); scrolled_window = gtk_scrolled_window_new (NULL, NULL); |