aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table
diff options
context:
space:
mode:
authorLi Yuan <li.yuan@sun.com>2005-08-04 12:56:54 +0800
committerLi Yuan <liyuan@src.gnome.org>2005-08-04 12:56:54 +0800
commit1b28d2f6d535e314f29e30a68b2386716053914a (patch)
tree0eb2740377599b84581fcdce95d5c30a79f70ad8 /widgets/table
parent848a963fd53dc2f4eb9b6b95ad389d5a6fe162fe (diff)
downloadgsoc2013-evolution-1b28d2f6d535e314f29e30a68b2386716053914a.tar
gsoc2013-evolution-1b28d2f6d535e314f29e30a68b2386716053914a.tar.gz
gsoc2013-evolution-1b28d2f6d535e314f29e30a68b2386716053914a.tar.bz2
gsoc2013-evolution-1b28d2f6d535e314f29e30a68b2386716053914a.tar.lz
gsoc2013-evolution-1b28d2f6d535e314f29e30a68b2386716053914a.tar.xz
gsoc2013-evolution-1b28d2f6d535e314f29e30a68b2386716053914a.tar.zst
gsoc2013-evolution-1b28d2f6d535e314f29e30a68b2386716053914a.zip
Add a11y name to the left table of config dialog. Add name to the left
2005-08-03 Li Yuan <li.yuan@sun.com> * menus/gal-view-new-dialog.glade: Add a11y name to the left table of config dialog. * misc/e-multi-config-dialog.c: Add name to the left table of preference dialog. * table/e-table-config.c: (e_table_proxy_etable_shown_new), (e_table_proxy_etable_available_new): Add a11y name to "Show Fields" table and "Available Fields" table. svn path=/trunk/; revision=29980
Diffstat (limited to 'widgets/table')
-rw-r--r--widgets/table/e-table-config.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/widgets/table/e-table-config.c b/widgets/table/e-table-config.c
index 28e3eb0ec7..a2a4d0eb8e 100644
--- a/widgets/table/e-table-config.c
+++ b/widgets/table/e-table-config.c
@@ -553,10 +553,16 @@ GtkWidget *
e_table_proxy_etable_shown_new (void)
{
ETableModel *model = NULL;
+ GtkWidget *widget;
+ ETableScrolled *ets;
model = e_table_subset_variable_new (global_store);
- return e_table_scrolled_new (model, NULL, spec, NULL);
+ widget = e_table_scrolled_new (model, NULL, spec, NULL);
+ ets = E_TABLE_SCROLLED (widget);
+ atk_object_set_name (gtk_widget_get_accessible ((GtkWidget *)ets->table), _("Show Fields"));
+
+ return widget;
}
GtkWidget *e_table_proxy_etable_available_new (void);
@@ -565,13 +571,19 @@ GtkWidget *
e_table_proxy_etable_available_new (void)
{
ETableModel *model;
+ GtkWidget *widget;
+ ETableScrolled *ets;
model = e_table_without_new (global_store,
NULL, NULL, NULL, NULL, NULL, NULL, NULL);
e_table_without_show_all (E_TABLE_WITHOUT (model));
- return e_table_scrolled_new (model, NULL, spec, NULL);
+ widget = e_table_scrolled_new (model, NULL, spec, NULL);
+ ets = E_TABLE_SCROLLED (widget);
+ atk_object_set_name (gtk_widget_get_accessible ((GtkWidget *)ets->table), _("Available Fields"));
+
+ return widget;
}
static void