[Xfce4-commits] [apps/gigolo] 22/35: Migrate from GtkHSeparator to GtkSeparator

noreply at xfce.org noreply at xfce.org
Mon Oct 31 18:18:56 CET 2016


This is an automated email from the git hooks/post-receive script.

landry pushed a commit to branch master
in repository apps/gigolo.

commit a0548e3ecd7e3a69443a1961a6664b9c18b1fd29
Author: Landry Breuil <landry at xfce.org>
Date:   Sun Jun 19 16:58:02 2016 +0200

    Migrate from GtkHSeparator to GtkSeparator
---
 src/bookmarkeditdialog.c | 2 +-
 src/preferencesdialog.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bookmarkeditdialog.c b/src/bookmarkeditdialog.c
index 7f6fd68..063bd5a 100644
--- a/src/bookmarkeditdialog.c
+++ b/src/bookmarkeditdialog.c
@@ -1058,7 +1058,7 @@ static void gigolo_bookmark_edit_dialog_init(GigoloBookmarkEditDialog *dialog)
 	gtk_label_set_mnemonic_widget(GTK_LABEL(priv->autoconnect_label), priv->autoconnect_checkbtn);
 	gtk_table_attach(GTK_TABLE(table), priv->autoconnect_checkbtn, 1, 2, 2, 3, GTK_FILL, GTK_FILL, 0, 0);
 
-	priv->separator = gtk_hseparator_new();
+	priv->separator = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);
 	gtk_table_attach(GTK_TABLE(table), priv->separator, 0, 2, 3, 4, GTK_FILL, GTK_FILL, 0, 0);
 
 	label = gtk_label_new_with_mnemonic(_("Service t_ype:"));
diff --git a/src/preferencesdialog.c b/src/preferencesdialog.c
index f44a896..65dad12 100644
--- a/src/preferencesdialog.c
+++ b/src/preferencesdialog.c
@@ -77,7 +77,7 @@ static GtkWidget *xfce_header_new(const gchar *icon, const gchar *title)
 	vbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
 	gtk_box_pack_start(GTK_BOX(vbox), xfce_heading, FALSE, FALSE, 0);
 
-	separator = gtk_hseparator_new();
+	separator = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);
 	gtk_box_pack_start(GTK_BOX(vbox), separator, FALSE, FALSE, 0);
 
 	return vbox;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list