[Xfce4-commits] [panel-plugins/xfce4-cpufreq-plugin] 11/20: Replace GtkV/HSeparator by GtkSeparator

noreply at xfce.org noreply at xfce.org
Sat May 6 21:01:12 CEST 2017


This is an automated email from the git hooks/post-receive script.

andre pushed a commit to branch master
in repository panel-plugins/xfce4-cpufreq-plugin.

commit c42e14410b5497440c2e60af475cdc9ced8e3138
Author: Andre Miranda <andre42m at gmail.com>
Date:   Fri Nov 4 22:46:44 2016 -0300

    Replace GtkV/HSeparator by GtkSeparator
---
 panel-plugin/xfce4-cpufreq-overview.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/xfce4-cpufreq-overview.c b/panel-plugin/xfce4-cpufreq-overview.c
index 2b7b703..d2d231a 100644
--- a/panel-plugin/xfce4-cpufreq-overview.c
+++ b/panel-plugin/xfce4-cpufreq-overview.c
@@ -280,13 +280,13 @@ cpufreq_overview (GtkWidget *widget, GdkEventButton *ev, CpuFreqPlugin *cpuFreq)
 			cpufreq_overview_add (cpu, j, dialog_hbox);
 
 			if (j + 1 < cpuFreq->cpus->len && j + 1 == i + step) {
-				separator = gtk_hseparator_new ();
+				separator = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
 				gtk_box_pack_start (GTK_BOX (dialog_vbox), separator,
 									FALSE, FALSE, 0);
 			}
 
 			if (j + 1 < cpuFreq->cpus->len && j + 1 < i + step) {
-				separator = gtk_vseparator_new ();
+				separator = gtk_separator_new (GTK_ORIENTATION_VERTICAL);
 				gtk_box_pack_start (GTK_BOX (dialog_hbox), separator,
 									FALSE, FALSE, 0);
 			}

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


More information about the Xfce4-commits mailing list