From b48721151298266be7764d7b6f8bf0563d48c690 Mon Sep 17 00:00:00 2001 From: Landry Breuil Date: Sat, 14 May 2016 15:47:00 +0200 Subject: [PATCH] Use GtkBox instead of GtkHBox --- panel-plugin/netload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel-plugin/netload.c b/panel-plugin/netload.c index 534e160..3af91e2 100644 --- a/panel-plugin/netload.c +++ b/panel-plugin/netload.c @@ -1124,7 +1124,7 @@ static void monitor_create_options(XfcePanelPlugin *plugin, t_global_monitor *gl gtk_widget_show_all(GTK_WIDGET(net_hbox)); /* Update timevalue */ - update_hbox = GTK_BOX(gtk_hbox_new(FALSE, 5)); + update_hbox = GTK_BOX(gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 5)); gtk_box_pack_start(GTK_BOX(global->monitor->opt_vbox), GTK_WIDGET(update_hbox), FALSE, FALSE, 0);