Remove deprecated text and text_length field in GtkEntry

These fields have been superseded by GtkEntryBuffer.
This commit is contained in:
Matthias Clasen
2010-08-28 22:27:36 -04:00
parent af8539bf11
commit 29aa3818a4
2 changed files with 3 additions and 29 deletions

View File

@ -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);