[Xfce4-commits] [panel-plugins/xfce4-systemload-plugin] 05/16: Use GtkBox instead of XfceHVBox
noreply at xfce.org
noreply at xfce.org
Fri Apr 29 16:07:22 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-systemload-plugin.
commit a061b026517e320afcbb3ff20d2616a13a29e969
Author: Landry Breuil <landry at xfce.org>
Date: Fri Apr 29 11:12:41 2016 +0200
Use GtkBox instead of XfceHVBox
---
panel-plugin/systemload.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/panel-plugin/systemload.c b/panel-plugin/systemload.c
index 2df191f..61a89aa 100644
--- a/panel-plugin/systemload.c
+++ b/panel-plugin/systemload.c
@@ -248,7 +248,7 @@ create_monitor (t_global_monitor *global)
{
gint count;
- global->box = xfce_hvbox_new(xfce_panel_plugin_get_orientation(global->plugin), FALSE, 0);
+ global->box = gtk_box_new(xfce_panel_plugin_get_orientation(global->plugin), 0);
gtk_widget_show(global->box);
for(count = 0; count < 3; count++)
@@ -258,7 +258,7 @@ create_monitor (t_global_monitor *global)
global->monitor[count]->status = GTK_WIDGET(gtk_progress_bar_new());
- global->monitor[count]->box = xfce_hvbox_new(xfce_panel_plugin_get_orientation(global->plugin), FALSE, 0);
+ global->monitor[count]->box = gtk_box_new(xfce_panel_plugin_get_orientation(global->plugin), 0);
gtk_box_pack_start(GTK_BOX(global->monitor[count]->box),
GTK_WIDGET(global->monitor[count]->label),
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list