]> Pileus Git - ~andy/gtk/commitdiff
Drop unneeded includes gailtextutil.h
authorMatthias Clasen <mclasen@redhat.com>
Fri, 1 Jul 2011 21:05:43 +0000 (17:05 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 5 Jul 2011 20:08:57 +0000 (16:08 -0400)
Almost done with getting rid of GailTextUtil.

gtk/a11y/gtkentryaccessible.h
gtk/a11y/gtklabelaccessible.h

index 489bc8cf23ee904a1bf16a722fc56232f6ca290f..f902cb5a12e6731d8df2f57963832989de63c55c 100644 (file)
@@ -21,7 +21,6 @@
 #define __GTK_ENTRY_ACCESSIBLE_H__
 
 #include "gailwidget.h"
-#include "gailtextutil.h"
 
 G_BEGIN_DECLS
 
@@ -32,21 +31,21 @@ G_BEGIN_DECLS
 #define GTK_IS_ENTRY_ACCESSIBLE_CLASS(klass)           (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ENTRY_ACCESSIBLE))
 #define GTK_ENTRY_ACCESSIBLE_GET_CLASS(obj)            (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ENTRY_ACCESSIBLE, GtkEntryAccessibleClass))
 
-typedef struct _GtkEntryAccessible              GtkEntryAccessible;
-typedef struct _GtkEntryAccessibleClass         GtkEntryAccessibleClass;
+typedef struct _GtkEntryAccessible      GtkEntryAccessible;
+typedef struct _GtkEntryAccessibleClass GtkEntryAccessibleClass;
 
 struct _GtkEntryAccessible
 {
   GailWidget parent;
 
-  gint           position_insert;
-  gint           position_delete;
-  gint           length_insert;
-  gint           length_delete;
-  gint           cursor_position;
-  gint           selection_bound;
+  gint position_insert;
+  gint position_delete;
+  gint length_insert;
+  gint length_delete;
+  gint cursor_position;
+  gint selection_bound;
 
-  guint          action_idle_handler;
+  guint action_idle_handler;
 };
 
 GType gtk_entry_accessible_get_type (void);
index 858f517dd420f40d4c00b4dcf4566b78847bf679..7f4ac76748d7561015912de7a55679091ceb0b2e 100644 (file)
@@ -21,7 +21,6 @@
 #define __GTK_LABEL_ACCESSIBLE_H__
 
 #include "gailwidget.h"
-#include "gailtextutil.h"
 
 G_BEGIN_DECLS