X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fa11y%2Fgtkcheckmenuitemaccessible.c;h=694fec45062da85d8dcba3e1a8d682acf6095226;hb=fa4878979e0a72890ca577a210ccd7cf6291dbf0;hp=7eb9b0f05cb15e61c8911c313e3decfca8bf6059;hpb=209a2d1ba02e17ad56af4c56293129686d4ca96c;p=~andy%2Fgtk diff --git a/gtk/a11y/gtkcheckmenuitemaccessible.c b/gtk/a11y/gtkcheckmenuitemaccessible.c index 7eb9b0f05..694fec450 100644 --- a/gtk/a11y/gtkcheckmenuitemaccessible.c +++ b/gtk/a11y/gtkcheckmenuitemaccessible.c @@ -1,5 +1,5 @@ -/* GAIL - The GNOME Accessibility Implementation Library - * Copyright 2002, 2003 Sun Microsystems Inc. +/* GTK+ - accessibility implementations + * Copyright 2002 Sun Microsystems Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -12,18 +12,17 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . */ #include "config.h" #include +#include #include "gtkcheckmenuitemaccessible.h" -G_DEFINE_TYPE (GtkCheckMenuItemAccessible, gtk_check_menu_item_accessible, GAIL_TYPE_MENU_ITEM) +G_DEFINE_TYPE (GtkCheckMenuItemAccessible, gtk_check_menu_item_accessible, GTK_TYPE_MENU_ITEM_ACCESSIBLE) static void toggled_cb (GtkWidget *widget) @@ -41,7 +40,7 @@ toggled_cb (GtkWidget *widget) static void gtk_check_menu_item_accessible_initialize (AtkObject *obj, - gpointer data) + gpointer data) { ATK_OBJECT_CLASS (gtk_check_menu_item_accessible_parent_class)->initialize (obj, data); @@ -102,14 +101,14 @@ gtk_check_menu_item_accessible_notify_gtk (GObject *obj, atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent)); } else - GAIL_WIDGET_CLASS (gtk_check_menu_item_accessible_parent_class)->notify_gtk (obj, pspec); + GTK_WIDGET_ACCESSIBLE_CLASS (gtk_check_menu_item_accessible_parent_class)->notify_gtk (obj, pspec); } static void gtk_check_menu_item_accessible_class_init (GtkCheckMenuItemAccessibleClass *klass) { - GailWidgetClass *widget_class = (GailWidgetClass*)klass; AtkObjectClass *class = ATK_OBJECT_CLASS (klass); + GtkWidgetAccessibleClass *widget_class = (GtkWidgetAccessibleClass*)klass; widget_class->notify_gtk = gtk_check_menu_item_accessible_notify_gtk;