diff options
author | Tor Lillqvist <tml@src.gnome.org> | 2008-11-01 12:18:07 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-11-01 12:18:07 +0000 |
commit | 2b9ac5df0b0795251c379749285a2cbb63987869 (patch) | |
tree | 5e7f2b26dec9efdb95fd694b1fb9caa79acf1a44 /tests | |
parent | 625bc7d454c2463b4ebd279c0add5b8af19ae1e0 (diff) | |
download | gtk+-2b9ac5df0b0795251c379749285a2cbb63987869.tar.gz |
Print the random client type name, not the fixed one.
svn path=/trunk/; revision=21750
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testclientmessage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testclientmessage.c b/tests/testclientmessage.c index 38516ea9eb..436e9e80d0 100644 --- a/tests/testclientmessage.c +++ b/tests/testclientmessage.c @@ -83,9 +83,9 @@ main (int argc, char **argv) g_rand_int_range (g_rand_new (), 1, 99)),
FALSE);
- g_print ("using client message type %s\n", gdk_atom_name (my_type));
+ g_print ("using random client message type %s\n", gdk_atom_name (random_type));
- window = g_object_connect (g_object_new (gtk_window_get_type (),
+ window = g_object_connect (g_object_new (gtk_window_get_type (),
"type", GTK_WINDOW_TOPLEVEL,
"title", "testclientmessage",
"border_width", 10,
|