diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2003-02-23 14:51:38 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2003-02-23 14:51:38 +0800 |
commit | e995245e785ff07d868d5618879b47b02b3ea189 (patch) | |
tree | 1bc3f0bcfe706e63b2b984ebba55e061cc6b3a31 /calendar | |
parent | 1f36e43b9464195715f676104bcf47edd9630ba3 (diff) | |
download | gsoc2013-evolution-e995245e785ff07d868d5618879b47b02b3ea189.tar.gz gsoc2013-evolution-e995245e785ff07d868d5618879b47b02b3ea189.tar.zst gsoc2013-evolution-e995245e785ff07d868d5618879b47b02b3ea189.zip |
CVS server broke again. Here's the rest...
2003-02-23 Hans Petter Jansson <hpj@ximian.com>
CVS server broke again. Here's the rest...
* gui/alarm-notify/alarm-notify-dialog.c (write_html_heading):
Ditto.
svn path=/trunk/; revision=20009
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-notify-dialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/alarm-notify/alarm-notify-dialog.c b/calendar/gui/alarm-notify/alarm-notify-dialog.c index b9c2606aed..81034ceca5 100644 --- a/calendar/gui/alarm-notify/alarm-notify-dialog.c +++ b/calendar/gui/alarm-notify/alarm-notify-dialog.c @@ -252,11 +252,11 @@ write_html_heading (GtkHTMLStream *stream, const char *message, current_zone = config_data_get_timezone (); buf = timet_to_str_with_zone (occur_start, current_zone); - start = e_utf8_from_locale_string (buf); + start = g_locale_to_utf8 (buf, -1, NULL, NULL, NULL); g_free (buf); buf = timet_to_str_with_zone (occur_end, current_zone); - end = e_utf8_from_locale_string (buf); + end = g_locale_to_utf8 (buf, -1, NULL, NULL, NULL); g_free (buf); /* Write the header */ |