[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] 10/27: Use gtk_separator_new instead of gtk_hseparator_new
noreply at xfce.org
noreply at xfce.org
Sat May 14 15:54:00 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 a80e39b286faa301b41a92013b4ba04a5057b48b
Author: Skunnyk <skunnyk at alteroot.org>
Date: Tue May 3 18:24:27 2016 +0200
Use gtk_separator_new instead of gtk_hseparator_new
---
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 1ec6868..6c75e6e 100644
--- a/panel-plugin/netload.c
+++ b/panel-plugin/netload.c
@@ -1108,7 +1108,7 @@ static void monitor_create_options(XfcePanelPlugin *plugin, t_global_monitor *gl
global->monitor->options.values_as_bits);
- sep1 = gtk_hseparator_new();
+ sep1 = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);
gtk_box_pack_start(GTK_BOX(global->monitor->opt_vbox), GTK_WIDGET(sep1), FALSE, FALSE, 0);
gtk_widget_show(sep1);
@@ -1162,7 +1162,7 @@ static void monitor_create_options(XfcePanelPlugin *plugin, t_global_monitor *gl
}
- sep2 = gtk_hseparator_new();
+ sep2 = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);
gtk_box_pack_start(GTK_BOX(global->monitor->opt_vbox), GTK_WIDGET(sep2), FALSE, FALSE, 0);
gtk_widget_show(sep2);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list