diff options
author | Owen Taylor <otaylor@src.gnome.org> | 1997-12-07 16:25:48 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1997-12-07 16:25:48 +0000 |
commit | 56aae058fc575645f1b1f0015fa844a13609caf1 (patch) | |
tree | c871322f3b0dc3d783637f06ff95e129840abe90 /gtk/gtkentry.h | |
parent | 37f6b421f2a9860c353d06c0aaa303edea345dfe (diff) | |
download | gtk+-56aae058fc575645f1b1f0015fa844a13609caf1.tar.gz |
Changes to make word motion work again.
Cut/copy/paste via the X clipboard.
Generalized extending selection using <Shift> to work with all types
of motion, not just arrow keys.
Don't change length of GtkEntry structure because of USE_XIM
-owt
Diffstat (limited to 'gtk/gtkentry.h')
-rw-r--r-- | gtk/gtkentry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h index 8325a7d509..c631b0cfa6 100644 --- a/gtk/gtkentry.h +++ b/gtk/gtkentry.h @@ -52,9 +52,9 @@ struct _GtkEntry guint have_selection : 1; guint visible : 1; guint32 timer; -#ifdef USE_XIM GdkIC ic; -#endif + + gchar *clipboard_text; }; struct _GtkEntryClass |