aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLi Yuan <li.yuan@sun.com>2005-01-25 19:18:16 +0800
committerHarry Lu <haip@src.gnome.org>2005-01-25 19:18:16 +0800
commitbec10b42d373fb28d11df5302d9591394943e3af (patch)
tree0f0996e4c76baad34bd9ab7ed6a40862908e48ad
parente992b405fb72da807750c7f521bf9d51bb97b982 (diff)
downloadgsoc2013-evolution-bec10b42d373fb28d11df5302d9591394943e3af.tar
gsoc2013-evolution-bec10b42d373fb28d11df5302d9591394943e3af.tar.gz
gsoc2013-evolution-bec10b42d373fb28d11df5302d9591394943e3af.tar.bz2
gsoc2013-evolution-bec10b42d373fb28d11df5302d9591394943e3af.tar.lz
gsoc2013-evolution-bec10b42d373fb28d11df5302d9591394943e3af.tar.xz
gsoc2013-evolution-bec10b42d373fb28d11df5302d9591394943e3af.tar.zst
gsoc2013-evolution-bec10b42d373fb28d11df5302d9591394943e3af.zip
add a11y name to task table.
2005-01-25 Li Yuan <li.yuan@sun.com> * gui/e-calendar-table.c: (e_calendar_table_init): add a11y name to task table. svn path=/trunk/; revision=28550
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/e-calendar-table.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 3c8b6d0869..89435f2dde 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-25 Li Yuan <li.yuan@sun.com>
+
+ * gui/e-calendar-table.c: (e_calendar_table_init):
+ add a11y name to task table.
+
2005-01-24 Rodrigo Moya <rodrigo@novell.com>
* gui/dialogs/recurrence-page.c (sensitize_buttons): if there are
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c
index 1141635308..a3d50bb475 100644
--- a/calendar/gui/e-calendar-table.c
+++ b/calendar/gui/e-calendar-table.c
@@ -294,6 +294,7 @@ e_calendar_table_init (ECalendarTable *cal_table)
gint i;
GdkPixbuf *pixbuf;
GList *strings;
+ AtkObject *a11y;
/* Create the model */
@@ -509,6 +510,10 @@ e_calendar_table_init (ECalendarTable *cal_table)
g_signal_connect (e_table, "right_click", G_CALLBACK (e_calendar_table_on_right_click), cal_table);
g_signal_connect (e_table, "key_press", G_CALLBACK (e_calendar_table_on_key_press), cal_table);
g_signal_connect (e_table, "popup_menu", G_CALLBACK (e_calendar_table_on_popup_menu), cal_table);
+
+ a11y = gtk_widget_get_accessible (e_table);
+ if (a11y)
+ atk_object_set_name (a11y, _("Task Table"));
}