summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-07-01 17:05:43 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-07-05 16:08:57 -0400
commit254538bf77d2a3a780fd68242b03c1825412d0db (patch)
tree685114909ae7e83d40f9270812723bf6779edcbc
parent3459dc480a34d3b01104f1987e76bcc32d0caa3d (diff)
downloadgtk+-254538bf77d2a3a780fd68242b03c1825412d0db.tar.gz
Drop unneeded includes gailtextutil.h
Almost done with getting rid of GailTextUtil.
-rw-r--r--gtk/a11y/gtkentryaccessible.h19
-rw-r--r--gtk/a11y/gtklabelaccessible.h1
2 files changed, 9 insertions, 11 deletions
diff --git a/gtk/a11y/gtkentryaccessible.h b/gtk/a11y/gtkentryaccessible.h
index 489bc8cf23..f902cb5a12 100644
--- a/gtk/a11y/gtkentryaccessible.h
+++ b/gtk/a11y/gtkentryaccessible.h
@@ -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);
diff --git a/gtk/a11y/gtklabelaccessible.h b/gtk/a11y/gtklabelaccessible.h
index 858f517dd4..7f4ac76748 100644
--- a/gtk/a11y/gtklabelaccessible.h
+++ b/gtk/a11y/gtklabelaccessible.h
@@ -21,7 +21,6 @@
#define __GTK_LABEL_ACCESSIBLE_H__
#include "gailwidget.h"
-#include "gailtextutil.h"
G_BEGIN_DECLS