diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-08-28 22:27:36 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-08-28 22:27:36 -0400 |
commit | 29aa3818a4ff8f107bd4d9cc347db8c5c3415da4 (patch) | |
tree | c296aa1b8b36e7f27f184f43acc4e5f83ff66de4 /gtk/gtkentry.h | |
parent | af8539bf11fd4e7084d304a6f33a46431f025741 (diff) | |
download | gtk+-29aa3818a4ff8f107bd4d9cc347db8c5c3415da4.tar.gz |
Remove deprecated text and text_length field in GtkEntry
These fields have been superseded by GtkEntryBuffer.
Diffstat (limited to 'gtk/gtkentry.h')
-rw-r--r-- | gtk/gtkentry.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h index 9bf5f85ff5..9dcd3a581e 100644 --- a/gtk/gtkentry.h +++ b/gtk/gtkentry.h @@ -67,17 +67,12 @@ struct _GtkEntry { GtkWidget widget; - gchar *GSEAL (text); /* COMPAT: Deprecated, not used. Remove in GTK+ 3.x */ - guint GSEAL (editable) : 1; guint GSEAL (visible) : 1; guint GSEAL (overwrite_mode) : 1; guint GSEAL (in_drag) : 1; /* FIXME: Should be private? Dragging within the selection */ - guint16 GSEAL (text_length); /* COMPAT: Deprecated, not used. Remove in GTK+ 3.x */ - guint16 GSEAL (text_max_length); /* COMPAT: Deprecated, not used. Remove in GTK+ 3.x */ - /*< private >*/ GdkWindow *GSEAL (text_area); GtkIMContext *GSEAL (im_context); |