[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] 04/27: Use GtkBox instead of XfceHVBox

noreply at xfce.org noreply at xfce.org
Sat May 14 15:53:54 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-netload-plugin.

commit 85a23bcf2c2eaa5d7daeded4577f7cbcfa995d7e
Author: Skunnyk <skunnyk at alteroot.org>
Date:   Tue May 3 14:45:07 2016 +0200

    Use GtkBox instead of XfceHVBox
---
 panel-plugin/netload.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/netload.c b/panel-plugin/netload.c
index 8eadb60..02c279d 100644
--- a/panel-plugin/netload.c
+++ b/panel-plugin/netload.c
@@ -466,7 +466,7 @@ static t_global_monitor * monitor_new(XfcePanelPlugin *plugin)
     }
 
     /* Create widget containers */
-    global->box = xfce_hvbox_new(GTK_ORIENTATION_HORIZONTAL, FALSE, 0);
+    global->box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
     gtk_container_set_border_width(GTK_CONTAINER(global->box), 2);
     gtk_widget_show(GTK_WIDGET(global->box));
 
@@ -488,7 +488,7 @@ static t_global_monitor * monitor_new(XfcePanelPlugin *plugin)
     gtk_event_box_set_visible_window(GTK_EVENT_BOX(global->ebox_bars), FALSE);
     gtk_event_box_set_above_child(GTK_EVENT_BOX(global->ebox_bars), TRUE);
     gtk_widget_show(global->ebox_bars);
-    global->box_bars = xfce_hvbox_new(GTK_ORIENTATION_HORIZONTAL, FALSE, 0);
+    global->box_bars = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
     gtk_widget_show(global->box_bars);
     for (i = 0; i < SUM; i++)
     {

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


More information about the Xfce4-commits mailing list