summaryrefslogtreecommitdiff
path: root/gtk/a11y/gtkswitchaccessible.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2011-07-05 14:36:39 +0200
committerBenjamin Otte <otte@redhat.com>2011-07-06 16:40:04 +0200
commit8efc350127b83b7bc55d67dc6744bef654765c3a (patch)
treec88cd8d1526c6da4b6ea228be312cd431e8228f5 /gtk/a11y/gtkswitchaccessible.c
parentccbe6c816b76e1c7ac21f769e43a3ac5bcd5dfe8 (diff)
downloadgtk+-8efc350127b83b7bc55d67dc6744bef654765c3a.tar.gz
a11y: Remove set_description handling from GtkSwitch
The function is unused in AT-SPI.
Diffstat (limited to 'gtk/a11y/gtkswitchaccessible.c')
-rw-r--r--gtk/a11y/gtkswitchaccessible.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/gtk/a11y/gtkswitchaccessible.c b/gtk/a11y/gtkswitchaccessible.c
index 4503e37d63..71e9e913df 100644
--- a/gtk/a11y/gtkswitchaccessible.c
+++ b/gtk/a11y/gtkswitchaccessible.c
@@ -60,8 +60,6 @@ gtk_switch_accessible_finalize (GObject *obj)
{
GtkSwitchAccessible *accessible = (GtkSwitchAccessible *)obj;
- g_free (accessible->action_description);
-
if (accessible->action_idle)
g_source_remove (accessible->action_idle);
@@ -94,7 +92,6 @@ gtk_switch_accessible_class_init (GtkSwitchAccessibleClass *klass)
static void
gtk_switch_accessible_init (GtkSwitchAccessible *self)
{
- self->action_description = NULL;
self->action_idle = 0;
}
@@ -114,34 +111,6 @@ gtk_switch_action_get_name (AtkAction *action,
return "toggle";
}
-static const gchar *
-gtk_switch_action_get_description (AtkAction *action,
- gint i)
-{
- GtkSwitchAccessible *accessible = (GtkSwitchAccessible *)action;
-
- if (i != 0)
- return NULL;
-
- return accessible->action_description;
-}
-
-static gboolean
-gtk_switch_action_set_description (AtkAction *action,
- gint i,
- const gchar *description)
-{
- GtkSwitchAccessible *accessible = (GtkSwitchAccessible*)action;
-
- if (i != 0)
- return FALSE;
-
- g_free (accessible->action_description);
- accessible->action_description = g_strdup (description);
-
- return TRUE;
-}
-
static gboolean
idle_do_action (gpointer data)
{
@@ -194,6 +163,4 @@ atk_action_interface_init (AtkActionIface *iface)
iface->do_action = gtk_switch_action_do_action;
iface->get_n_actions = gtk_switch_action_get_n_actions;
iface->get_name = gtk_switch_action_get_name;
- iface->get_description = gtk_switch_action_get_description;
- iface->set_description = gtk_switch_action_set_description;
}