summaryrefslogtreecommitdiff
path: root/tests/testxinerama.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testxinerama.c')
-rw-r--r--tests/testxinerama.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testxinerama.c b/tests/testxinerama.c
index 8b80361d30..80570a1bab 100644
--- a/tests/testxinerama.c
+++ b/tests/testxinerama.c
@@ -65,8 +65,8 @@ main (int argc, char *argv[])
gtk_label_set_markup (GTK_LABEL (label), str);
g_free (str);
button = gtk_button_new_with_label ("Close");
- g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK (gtk_main_quit), NULL);
- g_signal_connect (G_OBJECT (window), "configure-event", G_CALLBACK (request), label);
+ g_signal_connect (button, "clicked", G_CALLBACK (gtk_main_quit), NULL);
+ g_signal_connect (window, "configure-event", G_CALLBACK (request), label);
vbox = gtk_vbox_new (TRUE, 1);
gtk_container_add (GTK_CONTAINER (window), vbox);
gtk_container_add (GTK_CONTAINER (vbox), label);