diff options
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); |