diff options
-rw-r--r-- | mail/ChangeLog | 9 | ||||
-rw-r--r-- | mail/em-account-prefs.c | 2 | ||||
-rw-r--r-- | mail/mail-config.glade | 9 |
3 files changed, 20 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 902a16ecf9..25be1c65b2 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,12 @@ +2005-03-30 Li Yuan <li.yuan@sun.com> + + * em-account-prefs.c: (em_account_prefs_treeview_new): + add a11y name to Mail Accounts Table + * mail-config.glade: + add a11y name to tables in Mail Preferences page and + Composer Preferences page. + Fixes #73914 + 2005-03-16 Jeffrey Stedfast <fejj@novell.com> * em-format-html.c (efh_format_headers): Don't show multiple diff --git a/mail/em-account-prefs.c b/mail/em-account-prefs.c index 1d58afe852..0649698bf0 100644 --- a/mail/em-account-prefs.c +++ b/mail/em-account-prefs.c @@ -486,6 +486,8 @@ em_account_prefs_treeview_new (char *widget_name, char *string1, char *string2, selection = gtk_tree_view_get_selection ((GtkTreeView *) table); gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE); gtk_tree_view_set_headers_visible ((GtkTreeView *) table, TRUE); + atk_object_set_name (gtk_widget_get_accessible (table), _("Mail Accounts Table")); + /* FIXME: column auto-resize? */ /* Is this needed? diff --git a/mail/mail-config.glade b/mail/mail-config.glade index 4df8207e26..bf61dec601 100644 --- a/mail/mail-config.glade +++ b/mail/mail-config.glade @@ -5820,6 +5820,9 @@ For example: "Work" or "Personal"</property> <property name="rules_hint">False</property> <property name="reorderable">False</property> <property name="enable_search">True</property> + <accessibility> + <atkproperty name="AtkObject::accessible_name" translatable="yes">Mail Headers Table</atkproperty> + </accessibility> </widget> </child> </widget> @@ -6900,6 +6903,9 @@ For example: "Work" or "Personal"</property> <property name="rules_hint">False</property> <property name="reorderable">False</property> <property name="enable_search">True</property> + <accessibility> + <atkproperty name="AtkObject::accessible_name" translatable="yes">Signatures Table</atkproperty> + </accessibility> </widget> </child> </widget> @@ -7329,6 +7335,9 @@ For example: "Work" or "Personal"</property> <property name="rules_hint">False</property> <property name="reorderable">False</property> <property name="enable_search">True</property> + <accessibility> + <atkproperty name="AtkObject::accessible_name" translatable="yes">Languages Table</atkproperty> + </accessibility> </widget> </child> </widget> |