diff options
author | Li Yuan <li.yuan@sun.com> | 2005-01-25 19:18:16 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2005-01-25 19:18:16 +0800 |
commit | bec10b42d373fb28d11df5302d9591394943e3af (patch) | |
tree | 0f0996e4c76baad34bd9ab7ed6a40862908e48ad /calendar/gui | |
parent | e992b405fb72da807750c7f521bf9d51bb97b982 (diff) | |
download | gsoc2013-evolution-bec10b42d373fb28d11df5302d9591394943e3af.tar.gz 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
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-calendar-table.c | 5 |
1 files changed, 5 insertions, 0 deletions
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")); } |