From 848a963fd53dc2f4eb9b6b95ad389d5a6fe162fe Mon Sep 17 00:00:00 2001
From: Li Yuan
Date: Thu, 4 Aug 2005 04:32:43 +0000
Subject: Add a11y name to Plugin Table.
2005-08-03 Li Yuan
* plugin-manager.c: (org_gnome_plugin_manager_manage):
Add a11y name to Plugin Table.
svn path=/trunk/; revision=29979
---
plugins/plugin-manager/ChangeLog | 5 +++++
plugins/plugin-manager/plugin-manager.c | 2 ++
2 files changed, 7 insertions(+)
(limited to 'plugins/plugin-manager')
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
+
+ * plugin-manager.c: (org_gnome_plugin_manager_manage):
+ Add a11y name to Plugin Table.
+
2005-07-21 Not Zed
* 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);
--
cgit