Convert gtk_(h|v)separator_new to gtk_separator_new
This commit is contained in:
committed by
Stéphane Lesimple
parent
5ea0011dce
commit
222429df10
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user