diff options
author | Boby Wang <boby.wang@sun.com> | 2006-04-27 17:47:01 +0800 |
---|---|---|
committer | Li Yuan <liyuan@src.gnome.org> | 2006-04-27 17:47:01 +0800 |
commit | dace8f4623d5439b900ecc2059b53675ec0f5ff4 (patch) | |
tree | 2be3f7a8b5f1bd606579ce3bfc31b1d409aeae68 /widgets/misc/e-calendar.c | |
parent | 3aeecfe00fd92ea71a1c56c322e5ce09ee388684 (diff) | |
download | gsoc2013-evolution-dace8f4623d5439b900ecc2059b53675ec0f5ff4.tar.gz gsoc2013-evolution-dace8f4623d5439b900ecc2059b53675ec0f5ff4.tar.zst gsoc2013-evolution-dace8f4623d5439b900ecc2059b53675ec0f5ff4.zip |
** Fixes bug #339138
2006-04-27 Boby Wang <boby.wang@sun.com>
** Fixes bug #339138
* e-calendar.c: (e_calendar_init):
Correct the button's accessible name.
svn path=/trunk/; revision=31916
Diffstat (limited to 'widgets/misc/e-calendar.c')
-rw-r--r-- | widgets/misc/e-calendar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-calendar.c b/widgets/misc/e-calendar.c index dda0b141c5..fc1c21c74d 100644 --- a/widgets/misc/e-calendar.c +++ b/widgets/misc/e-calendar.c @@ -198,7 +198,7 @@ e_calendar_init (ECalendar *cal) "widget", button, NULL); a11y = gtk_widget_get_accessible (button); - atk_object_set_name (a11y, _("Previous")); + atk_object_set_name (a11y, _("Next")); cal->min_rows = 1; cal->min_cols = 1; |