X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fa11y%2Fgtknotebookaccessible.h;h=759854ea3eea474738e3c7a127dbb11d8c142a51;hb=9d0febc9a64a5bfb0fcfc3a88de4757f6c1ff090;hp=770c12b0704885423593f423b5033eb1b7d076bd;hpb=318192b93747299f6e674fd68e1ea3b549e3048e;p=~andy%2Fgtk diff --git a/gtk/a11y/gtknotebookaccessible.h b/gtk/a11y/gtknotebookaccessible.h index 770c12b07..759854ea3 100644 --- a/gtk/a11y/gtknotebookaccessible.h +++ b/gtk/a11y/gtknotebookaccessible.h @@ -12,19 +12,17 @@ * Library General Public License for more details. * * You should have received a copy of the GNU Library 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 . */ #ifndef __GTK_NOTEBOOK_ACCESSIBLE_H__ #define __GTK_NOTEBOOK_ACCESSIBLE_H__ -#include "gailcontainer.h" +#include "gtkcontaineraccessible.h" G_BEGIN_DECLS -#define GTK_TYPE_NOTEBOOK_ACCESSIBLE (gtk_notebook_accessible_get_type ()) +#define GTK_TYPE_NOTEBOOK_ACCESSIBLE (_gtk_notebook_accessible_get_type ()) #define GTK_NOTEBOOK_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_NOTEBOOK_ACCESSIBLE, GtkNotebookAccessible)) #define GTK_NOTEBOOK_ACCESSIBLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_NOTEBOOK_ACCESSIBLE, GtkNotebookAccessibleClass)) #define GTK_IS_NOTEBOOK_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_NOTEBOOK_ACCESSIBLE)) @@ -36,7 +34,7 @@ typedef struct _GtkNotebookAccessibleClass GtkNotebookAccessibleClass; struct _GtkNotebookAccessible { - GailContainer parent; + GtkContainerAccessible parent; /* * page_cache maintains a list of pre-ref'd Notebook Pages. @@ -52,10 +50,10 @@ struct _GtkNotebookAccessible struct _GtkNotebookAccessibleClass { - GailContainerClass parent_class; + GtkContainerAccessibleClass parent_class; }; -GType gtk_notebook_accessible_get_type (void); +GType _gtk_notebook_accessible_get_type (void); G_END_DECLS