diff options
author | Stef Walter <stef@memberwebs.com> | 2009-07-08 20:41:53 -0500 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2009-07-08 20:41:53 -0500 |
commit | eab02f697a29f2bfd388f6318adf18e2936e7e96 (patch) | |
tree | a35e51f9844f498b8cdea61661e197a5c8aa8722 /gtk/Makefile.am | |
parent | 9ef87ea11e7d2b50d5222e5429b8a65a0f665162 (diff) | |
download | gtk+-eab02f697a29f2bfd388f6318adf18e2936e7e96.tar.gz |
GtkEntryBuffer holds text for GtkEntry
Adds a 'model' type buffer for GtkEntry in which the actual
textual data is stored. GtkEntryBuffer can be subclassed.
Among other things, this allows GtkEntry to be used for secrets
that need to be stored in non-pageable memory. It also allows
buffers to be shared by entries.
See bug #576801.
Diffstat (limited to 'gtk/Makefile.am')
-rw-r--r-- | gtk/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 02463f0371..48b1f74ecf 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -197,6 +197,7 @@ gtk_public_h_sources = \ gtkdrawingarea.h \ gtkeditable.h \ gtkentry.h \ + gtkentrybuffer.h \ gtkentrycompletion.h \ gtkenums.h \ gtkeventbox.h \ @@ -447,6 +448,7 @@ gtk_base_c_sources = \ gtkdrawingarea.c \ gtkeditable.c \ gtkentry.c \ + gtkentrybuffer.c \ gtkentrycompletion.c \ gtkeventbox.c \ gtkexpander.c \ |