diff options
-rw-r--r-- | plugins/plugin-manager/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/plugin-manager/plugin-manager.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/plugins/plugin-manager/ChangeLog b/plugins/plugin-manager/ChangeLog index 5bdd567564..68a0eaace0 100644 --- a/plugins/plugin-manager/ChangeLog +++ b/plugins/plugin-manager/ChangeLog @@ -1,3 +1,8 @@ +2005-08-03 Li Yuan <li.yuan@sun.com> + + * plugin-manager.c: (org_gnome_plugin_manager_manage): + Add a11y name to Plugin Table. + 2005-07-21 Not Zed <NotZed@Ximian.com> * org-gnome-plugin-manager.xml: Remove the tools menu which diff --git a/plugins/plugin-manager/plugin-manager.c b/plugins/plugin-manager/plugin-manager.c index 160783e856..7ee0c90c0c 100644 --- a/plugins/plugin-manager/plugin-manager.c +++ b/plugins/plugin-manager/plugin-manager.c @@ -268,6 +268,8 @@ org_gnome_plugin_manager_manage(void *ep, ESMenuTargetShell *t) } gtk_tree_view_set_model(m->tree, (GtkTreeModel *)m->model); + atk_object_set_name (gtk_widget_get_accessible ((GtkWidget *)m->tree), _("Plugin")); + g_object_set_data_full((GObject *)m->dialog, "plugin-manager", m, eppm_free); g_signal_connect(m->dialog, "response", G_CALLBACK(eppm_response), m); |