[Xfce4-commits] [panel-plugins/xfce4-eyes-plugin] 04/16: Use GtkBox instead of GtkHBox
noreply at xfce.org
noreply at xfce.org
Sun Jun 5 17:47:34 CEST 2016
This is an automated email from the git hooks/post-receive script.
andre pushed a commit to branch master
in repository panel-plugins/xfce4-eyes-plugin.
commit fcbb79b83238c400c51b94c481fc997f8baf13eb
Author: Andre Miranda <andre42m at gmail.com>
Date: Thu May 26 00:08:33 2016 -0300
Use GtkBox instead of GtkHBox
---
panel-plugin/eyes.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/panel-plugin/eyes.c b/panel-plugin/eyes.c
index 04a16b4..e5ca268 100644
--- a/panel-plugin/eyes.c
+++ b/panel-plugin/eyes.c
@@ -210,7 +210,7 @@ setup_eyes(EyesPlugin *eyes)
eyes->hbox = NULL;
}
- eyes->hbox = gtk_hbox_new(FALSE, 0);
+ eyes->hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_container_add(GTK_CONTAINER(eyes->align), GTK_WIDGET(eyes->hbox));
eyes->eyes = g_new0 (GtkWidget *, eyes->num_eyes);
@@ -340,7 +340,7 @@ eyes_properties_dialog (XfcePanelPlugin *plugin,
g_signal_connect (dlg, "response", G_CALLBACK (eyes_properties_dialog_response),
eyes);
- hbox = gtk_hbox_new(FALSE, 6);
+ hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 6);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), hbox, FALSE, FALSE, 0);
gtk_container_set_border_width (GTK_CONTAINER (hbox), 6);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list