[Xfce4-commits] [panel-plugins/xfce4-smartbookmark-plugin] 09/11: Use GtkBox with GTK_ORIENTATION_HORIZONTAL instead of GtkHBox
noreply at xfce.org
noreply at xfce.org
Thu Apr 28 11:51:07 CEST 2016
This is an automated email from the git hooks/post-receive script.
landry pushed a commit to branch master
in repository panel-plugins/xfce4-smartbookmark-plugin.
commit af7d368d10cf1889d8d95ef7c0ce28bb3b4d68ac
Author: Landry Breuil <landry at xfce.org>
Date: Thu Apr 28 11:46:49 2016 +0200
Use GtkBox with GTK_ORIENTATION_HORIZONTAL instead of GtkHBox
---
src/smartbookmark.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/smartbookmark.c b/src/smartbookmark.c
index 3552bd2..9e6d4da 100644
--- a/src/smartbookmark.c
+++ b/src/smartbookmark.c
@@ -269,7 +269,7 @@ static void search_create_options(XfcePanelPlugin *plugin, t_search *search)
gtk_container_add(GTK_CONTAINER(GTK_DIALOG(search->opt_dialog)->vbox), vbox);
DBG ("Creating hbox");
- hbox = gtk_hbox_new(FALSE, 0);
+ hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_widget_show(hbox);
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5);
@@ -307,7 +307,7 @@ static void search_create_options(XfcePanelPlugin *plugin, t_search *search)
gtk_widget_show(search->hide_check);
DBG ("Creating second hbox");
- hbox = gtk_hbox_new(FALSE, 0);
+ hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_widget_show(hbox);
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5);
/* url label */
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list