Convert gtk_(h|v)separator_new to gtk_separator_new

This commit is contained in:
Paul Dicker
2025-04-07 10:53:52 +02:00
committed by Stéphane Lesimple
parent 5ea0011dce
commit 222429df10
13 changed files with 35 additions and 35 deletions

View File

@@ -348,7 +348,7 @@ void GuiCreateMediumInfoWindow()
gtk_misc_set_alignment(GTK_MISC(lab), 0.0, 0.0);
gtk_box_pack_start(GTK_BOX(vbox), lab, FALSE, FALSE, 0);
sep = gtk_hseparator_new();
sep = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);
gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(vbox), gtk_label_new(" "), FALSE, FALSE, 0);