diff options
author | Andre Klapper <a9016009@gmx.de> | 2006-09-15 00:41:27 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-09-15 00:41:27 +0800 |
commit | 41077c52cfac7903f66cb596cf7103dcae4cd31d (patch) | |
tree | 73e79824910b90fbe689869e1b86fc7a07f7408d | |
parent | f1ade2d6d4c4d8b55dff761ed06abf3890b7de5f (diff) | |
download | gsoc2013-evolution-41077c52cfac7903f66cb596cf7103dcae4cd31d.tar.gz gsoc2013-evolution-41077c52cfac7903f66cb596cf7103dcae4cd31d.tar.zst gsoc2013-evolution-41077c52cfac7903f66cb596cf7103dcae4cd31d.zip |
correct display of time. Fixes bug #343686.
2006-09-14 Andre Klapper <a9016009@gmx.de>
* itip-view.c: correct display of time. Fixes bug #343686.
svn path=/trunk/; revision=32765
-rw-r--r-- | plugins/itip-formatter/ChangeLog | 4 | ||||
-rw-r--r-- | plugins/itip-formatter/itip-view.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog index d5f5ac0a0f..48c18400a1 100644 --- a/plugins/itip-formatter/ChangeLog +++ b/plugins/itip-formatter/ChangeLog @@ -1,3 +1,7 @@ +2006-09-14 Andre Klapper <a9016009@gmx.de> + + * itip-view.c: correct display of time. Fixes bug #343686. + 2006-08-23 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #347248 diff --git a/plugins/itip-formatter/itip-view.c b/plugins/itip-formatter/itip-view.c index 3d644eca93..6920347485 100644 --- a/plugins/itip-formatter/itip-view.c +++ b/plugins/itip-formatter/itip-view.c @@ -326,7 +326,7 @@ format_date_and_time_x (struct tm *date_tm, /* strftime returns 0 if the string doesn't fit, and leaves the buffer undefined, so we set it to the empty string in that case. */ - if (e_utf8_strftime (buffer, buffer_size, format, date_tm) == 0) + if (e_utf8_strftime_fix_am_pm (buffer, buffer_size, format, date_tm) == 0) buffer[0] = '\0'; } |