summaryrefslogtreecommitdiff
path: root/tests/testselection.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>1998-12-09 17:31:52 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-12-09 17:31:52 +0000
commitdfa88ef9c79f57580cbe77b21ca259e8530c70ec (patch)
tree3f3300349b9ca7506f4da7a7b8dd678e7891ba95 /tests/testselection.c
parentadc2698da1d3dddd0b33f6ab80cfb63f9ae83b56 (diff)
downloadgtk+-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.c6
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]);