diff options
author | Owen Taylor <otaylor@redhat.com> | 1998-12-09 17:31:52 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1998-12-09 17:31:52 +0000 |
commit | dfa88ef9c79f57580cbe77b21ca259e8530c70ec (patch) | |
tree | 3f3300349b9ca7506f4da7a7b8dd678e7891ba95 /tests/testselection.c | |
parent | adc2698da1d3dddd0b33f6ab80cfb63f9ae83b56 (diff) | |
download | gtk+-dfa88ef9c79f57580cbe77b21ca259e8530c70ec.tar.gz |
Add in missing 'flags' field to target list.
Wed Dec 9 12:23:30 1998 Owen Taylor <otaylor@redhat.com>
* gtk/testselection.c (main): Add in missing 'flags'
field to target list.
* gdk/gdkproperty.c (gdk_atom_intern): Actually
add the atoms to the local cache.
Diffstat (limited to 'tests/testselection.c')
-rw-r--r-- | tests/testselection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testselection.c b/tests/testselection.c index e88d44347c..765f918f28 100644 --- a/tests/testselection.c +++ b/tests/testselection.c @@ -384,9 +384,9 @@ main (int argc, char *argv[]) GtkWidget *hbox; static GtkTargetEntry targetlist[] = { - { "STRING", STRING }, - { "TEXT", TEXT }, - { "COMPOUND_TEXT", COMPOUND_TEXT } + { "STRING", 0, STRING }, + { "TEXT", 0, TEXT }, + { "COMPOUND_TEXT", 0, COMPOUND_TEXT } }; static gint ntargets = sizeof(targetlist) / sizeof(targetlist[0]); |