calendar: Use gtk_widget_class_accessible_set_role()

This commit is contained in:
Benjamin Otte 2011-07-18 14:22:03 +02:00
parent b17ad131ea
commit 8815ccf5c4

View File

@ -393,7 +393,6 @@ static gboolean gtk_calendar_drag_drop (GtkWidget *widget,
gint y, gint y,
guint time); guint time);
static AtkObject *gtk_calendar_get_accessible (GtkWidget *widget);
static void calendar_start_spinning (GtkCalendar *calendar, static void calendar_start_spinning (GtkCalendar *calendar,
gint click_child); gint click_child);
@ -457,7 +456,7 @@ gtk_calendar_class_init (GtkCalendarClass *class)
widget_class->drag_drop = gtk_calendar_drag_drop; widget_class->drag_drop = gtk_calendar_drag_drop;
widget_class->drag_data_received = gtk_calendar_drag_data_received; widget_class->drag_data_received = gtk_calendar_drag_data_received;
widget_class->get_accessible = gtk_calendar_get_accessible; gtk_widget_class_set_accessible_role (widget_class, ATK_ROLE_CALENDAR);
/** /**
* GtkCalendar:year: * GtkCalendar:year:
@ -3558,18 +3557,6 @@ gtk_calendar_drag_data_received (GtkWidget *widget,
g_object_thaw_notify (G_OBJECT (calendar)); g_object_thaw_notify (G_OBJECT (calendar));
} }
static AtkObject *
gtk_calendar_get_accessible (GtkWidget *widget)
{
AtkObject *obj;
obj = GTK_WIDGET_CLASS (gtk_calendar_parent_class)->get_accessible (widget);
atk_object_set_role (obj, ATK_ROLE_CALENDAR);
return obj;
}
/**************************************** /****************************************
* Public API * * Public API *