From e2fbfd581d4bfc223f50af93fb48667e78f4398d Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Fri, 3 Apr 1998 08:05:35 +0000 Subject: The "better" format string for strftime() wasn't better, after all :-( 1998-04-03 Federico Mena Quintero * view-utils.c (view_utils_draw_events): The "better" format string for strftime() wasn't better, after all :-( ... plus more work on progress svn path=/trunk/; revision=101 --- calendar/gui/view-utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'calendar/gui/view-utils.c') 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, -- cgit v1.2.3