diff options
Diffstat (limited to 'calendar/gui/view-utils.c')
-rw-r--r-- | calendar/gui/view-utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/view-utils.c b/calendar/gui/view-utils.c index 0c661d9dd6..f5a3b41928 100644 --- a/calendar/gui/view-utils.c +++ b/calendar/gui/view-utils.c @@ -79,11 +79,11 @@ view_utils_draw_events (GtkWidget *widget, GdkWindow *window, GdkGC *gc, GdkRect str = ico->summary; if (flags & VIEW_UTILS_DRAW_END) { - strftime (buf, 512, "%R%p-", &tm_start); + strftime (buf, 512, "%X-", &tm_start); len = strlen (buf); - strftime (buf + len, 512 - len, "%R%p ", &tm_end); + strftime (buf + len, 512 - len, "%X ", &tm_end); } else - strftime (buf, 512, "%R%p ", &tm_start); + strftime (buf, 512, "%X ", &tm_start); gdk_draw_string (window, widget->style->font, |