diff options
author | Chyla Zbigniew <chyla@src.gnome.org> | 2001-11-08 22:41:13 +0800 |
---|---|---|
committer | Chyla Zbigniew <chyla@src.gnome.org> | 2001-11-08 22:41:13 +0800 |
commit | d1e3f760a9b837802951bac11fd5f0dcdcf42f28 (patch) | |
tree | 4924bea0616dacb311c0d13303461a285a98b9b6 /calendar | |
parent | 2621e9ad1017e65c6a09b8e87d66b121750d0d81 (diff) | |
download | gsoc2013-evolution-d1e3f760a9b837802951bac11fd5f0dcdcf42f28.tar gsoc2013-evolution-d1e3f760a9b837802951bac11fd5f0dcdcf42f28.tar.gz gsoc2013-evolution-d1e3f760a9b837802951bac11fd5f0dcdcf42f28.tar.bz2 gsoc2013-evolution-d1e3f760a9b837802951bac11fd5f0dcdcf42f28.tar.lz gsoc2013-evolution-d1e3f760a9b837802951bac11fd5f0dcdcf42f28.tar.xz gsoc2013-evolution-d1e3f760a9b837802951bac11fd5f0dcdcf42f28.tar.zst gsoc2013-evolution-d1e3f760a9b837802951bac11fd5f0dcdcf42f28.zip |
Convert generated string to UTF-8.
* gui/e-cell-date-edit-text.c (ecd_get_text):
Convert generated string to UTF-8.
svn path=/trunk/; revision=14624
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-cell-date-edit-text.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ed11d86095..6a861a26f6 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2001-11-07 Zbigniew Chyla <cyba@gnome.pl> + + * gui/e-cell-date-edit-text.c (ecd_get_text): + Convert generated string to UTF-8. + 2001-11-07 JP Rosevear <jpr@ximian.com> * gui/e-meeting-time-sel.c diff --git a/calendar/gui/e-cell-date-edit-text.c b/calendar/gui/e-cell-date-edit-text.c index 679e203d23..96cf911a1a 100644 --- a/calendar/gui/e-cell-date-edit-text.c +++ b/calendar/gui/e-cell-date-edit-text.c @@ -88,7 +88,7 @@ ecd_get_text (ECellText *cell, ETableModel *model, int col, int row) e_time_format_date_and_time (&tmp_tm, ecd->use_24_hour_format, !dv->tt.is_date, FALSE, buffer, sizeof (buffer)); - return g_strdup (buffer); + return e_utf8_from_locale_string (buffer); } |