Fix #10690 build broken on GLib < 2.74

Use 0 instead of new symbol G_CONNECT_DEFAULT first defined in glib2.74
This commit is contained in:
bootchk 2024-01-24 13:30:10 -05:00
parent f78186e03b
commit 6aa9f97819
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ gimp_container_icon_view_set_container (GimpContainerView *view,
g_signal_connect_object (icon_view->view, "button-press-event",
G_CALLBACK (gimp_container_icon_view_button_press),
icon_view,
G_CONNECT_DEFAULT);
0);
}
parent_view_iface->set_container (view, container);