testgtk: Fix g_object_new use

This is the kind of thing that happens with varargs apis.
This commit is contained in:
Matthias Clasen 2020-05-03 11:15:40 -04:00
parent b96d7b62d1
commit e2781af16f

View File

@ -3548,7 +3548,7 @@ create_display_screen (GtkWidget *widget)
window = g_object_new (gtk_window_get_type (),
"display", display,
"title", "Screen or Display selection",
10, NULL);
NULL);
g_signal_connect (window, "destroy",
G_CALLBACK (gtk_widget_destroy), NULL);