aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-calendar-item.c
diff options
context:
space:
mode:
authorDamon Chaplin <damon@helixcode.com>2000-09-30 23:26:53 +0800
committerDamon Chaplin <damon@src.gnome.org>2000-09-30 23:26:53 +0800
commit32d2e7c670ebc72b8f60172e8f6fddcc5ae7f45d (patch)
tree2dfd0872502c90efe8e66e0984e48a2fb45ee099 /widgets/misc/e-calendar-item.c
parentcafbcb9183498ec7a445889de68b4a6c8bf16335 (diff)
downloadgsoc2013-evolution-32d2e7c670ebc72b8f60172e8f6fddcc5ae7f45d.tar
gsoc2013-evolution-32d2e7c670ebc72b8f60172e8f6fddcc5ae7f45d.tar.gz
gsoc2013-evolution-32d2e7c670ebc72b8f60172e8f6fddcc5ae7f45d.tar.bz2
gsoc2013-evolution-32d2e7c670ebc72b8f60172e8f6fddcc5ae7f45d.tar.lz
gsoc2013-evolution-32d2e7c670ebc72b8f60172e8f6fddcc5ae7f45d.tar.xz
gsoc2013-evolution-32d2e7c670ebc72b8f60172e8f6fddcc5ae7f45d.tar.zst
gsoc2013-evolution-32d2e7c670ebc72b8f60172e8f6fddcc5ae7f45d.zip
better i18n of strftime strings.
2000-09-30 Damon Chaplin <damon@helixcode.com> * e-calendar-item.c: * e-dateedit.c: better i18n of strftime strings. svn path=/trunk/; revision=5645
Diffstat (limited to 'widgets/misc/e-calendar-item.c')
-rw-r--r--widgets/misc/e-calendar-item.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/misc/e-calendar-item.c b/widgets/misc/e-calendar-item.c
index 78604716f2..e84f24329d 100644
--- a/widgets/misc/e-calendar-item.c
+++ b/widgets/misc/e-calendar-item.c
@@ -1036,7 +1036,7 @@ e_calendar_item_draw_month (ECalendarItem *calitem,
gdk_gc_set_clip_rectangle (fg_gc, &clip_rect);
/* This is a strftime() format. %B = Month name, %Y = Year. */
- strftime (buffer, 64, _("%B %Y"), &tmp_tm);
+ strftime (buffer, sizeof (buffer), _("%B %Y"), &tmp_tm);
/* Ideally we place the text centered in the month, but we
won't go to the left of the minimum x position. */
@@ -2668,7 +2668,7 @@ e_calendar_item_show_popup_menu (ECalendarItem *calitem,
tmp_tm.tm_isdst = -1;
mktime (&tmp_tm);
/* This is a strftime() format. %B = Month name, %Y = Year. */
- strftime (buffer, 64, _("%B %Y"), &tmp_tm);
+ strftime (buffer, sizeof (buffer), _("%B %Y"), &tmp_tm);
menuitem = gtk_menu_item_new_with_label (buffer);
gtk_widget_show (menuitem);