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

@@ -475,7 +475,7 @@ GtkWidget *GuiCreateToolBar(GtkWidget *parent)
space = gtk_label_new(NULL);
gtk_box_pack_start(GTK_BOX(box), space, FALSE, FALSE, 1);
sep = gtk_vseparator_new();
sep = gtk_separator_new(GTK_ORIENTATION_VERTICAL);
gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 3);
/*** Image file selection */
@@ -498,7 +498,7 @@ GtkWidget *GuiCreateToolBar(GtkWidget *parent)
space = gtk_label_new(NULL);
gtk_box_pack_start(GTK_BOX(box), space, FALSE, FALSE, 5);
sep = gtk_vseparator_new();
sep = gtk_separator_new(GTK_ORIENTATION_VERTICAL);
gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 3);
GuiAttachTooltip(button, _("tooltip|Image file selection"),
_("Selects a new image file."));
@@ -526,7 +526,7 @@ GtkWidget *GuiCreateToolBar(GtkWidget *parent)
space = gtk_label_new(NULL);
gtk_box_pack_start(GTK_BOX(box), space, FALSE, FALSE, 5);
sep = gtk_vseparator_new();
sep = gtk_separator_new(GTK_ORIENTATION_VERTICAL);
gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 3);
GuiAttachTooltip(button,
_("tooltip|Error correction file selection"),