gail: use accessor functions to access GtkToggleButton
This commit is contained in:
@ -84,7 +84,7 @@ gail_toggle_button_toggled_gtk (GtkWidget *widget)
|
|||||||
|
|
||||||
accessible = gtk_widget_get_accessible (widget);
|
accessible = gtk_widget_get_accessible (widget);
|
||||||
atk_object_notify_state_change (accessible, ATK_STATE_CHECKED,
|
atk_object_notify_state_change (accessible, ATK_STATE_CHECKED,
|
||||||
toggle_button->active);
|
gtk_toggle_button_get_active (toggle_button));
|
||||||
}
|
}
|
||||||
|
|
||||||
static AtkStateSet*
|
static AtkStateSet*
|
||||||
|
|||||||
@ -713,7 +713,7 @@ gchar **tests_set(gint window, int *count)
|
|||||||
for (i = 0; i < testcount[window]; i++)
|
for (i = 0; i < testcount[window]; i++)
|
||||||
{
|
{
|
||||||
nullparam = FALSE;
|
nullparam = FALSE;
|
||||||
if (GTK_TOGGLE_BUTTON(listoftests[window][i].toggleButton)->active)
|
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (listoftests[window][i].toggleButton)))
|
||||||
{
|
{
|
||||||
num = listoftests[window][i].numParameters;
|
num = listoftests[window][i].numParameters;
|
||||||
for (j = 0; j < num; j++)
|
for (j = 0; j < num; j++)
|
||||||
|
|||||||
@ -73,11 +73,11 @@ static void choicecb (GtkWidget *widget, gpointer data)
|
|||||||
AtkObject **ptr_to_obj = (AtkObject **)data;
|
AtkObject **ptr_to_obj = (AtkObject **)data;
|
||||||
AtkObject *obj = *ptr_to_obj;
|
AtkObject *obj = *ptr_to_obj;
|
||||||
|
|
||||||
if (GTK_TOGGLE_BUTTON(tc->tb_others)->active)
|
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (tc->tb_others)))
|
||||||
{
|
{
|
||||||
other_runtest(obj);
|
other_runtest(obj);
|
||||||
}
|
}
|
||||||
else if (GTK_TOGGLE_BUTTON(tc->tb_ref_selection)->active)
|
else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (tc->tb_ref_selection)))
|
||||||
{
|
{
|
||||||
const gchar *indexstr;
|
const gchar *indexstr;
|
||||||
gint index;
|
gint index;
|
||||||
@ -87,7 +87,7 @@ static void choicecb (GtkWidget *widget, gpointer data)
|
|||||||
|
|
||||||
ref_selection_runtest(obj, index);
|
ref_selection_runtest(obj, index);
|
||||||
}
|
}
|
||||||
else if (GTK_TOGGLE_BUTTON(tc->tb_ref_at)->active)
|
else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (tc->tb_ref_at)))
|
||||||
{
|
{
|
||||||
const gchar *rowstr, *colstr;
|
const gchar *rowstr, *colstr;
|
||||||
gint row, col;
|
gint row, col;
|
||||||
@ -99,7 +99,7 @@ static void choicecb (GtkWidget *widget, gpointer data)
|
|||||||
|
|
||||||
ref_at_runtest(obj, row, col);
|
ref_at_runtest(obj, row, col);
|
||||||
}
|
}
|
||||||
else if (GTK_TOGGLE_BUTTON(tc->tb_ref_accessible_child)->active)
|
else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (tc->tb_ref_accessible_child)))
|
||||||
{
|
{
|
||||||
const gchar *childstr;
|
const gchar *childstr;
|
||||||
gint childno;
|
gint childno;
|
||||||
|
|||||||
Reference in New Issue
Block a user