[Xfce4-commits] [panel-plugins/xfce4-fsguard-plugin] 10/15: Use GtkBox instead of XfceHVBox

noreply at xfce.org noreply at xfce.org
Thu Apr 28 12:07:53 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-fsguard-plugin.

commit b562130b50122b1f9163435a705ef9b71b8f8f46
Author: Landry Breuil <landry at xfce.org>
Date:   Thu Apr 28 12:03:17 2016 +0200

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

diff --git a/panel-plugin/fsguard.c b/panel-plugin/fsguard.c
index 8a08247..9b1eaa5 100644
--- a/panel-plugin/fsguard.c
+++ b/panel-plugin/fsguard.c
@@ -408,11 +408,11 @@ fsguard_new (XfcePanelPlugin *plugin)
     gtk_event_box_set_visible_window(GTK_EVENT_BOX(fsguard->ebox), FALSE);
 
     GtkOrientation orientation = xfce_panel_plugin_get_orientation (plugin);
-    fsguard->box = xfce_hvbox_new (orientation, FALSE, 2);
+    fsguard->box = gtk_box_new (orientation, 2);
 
     fsguard->lab_name = gtk_label_new (NULL);
     fsguard->lab_size = gtk_label_new (NULL);
-    fsguard->lab_box = xfce_hvbox_new (GTK_ORIENTATION_VERTICAL, FALSE, 2);
+    fsguard->lab_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
 
     gtk_widget_set_halign(fsguard->lab_box, GTK_ALIGN_CENTER);
     gtk_widget_set_valign(fsguard->lab_box, GTK_ALIGN_CENTER);

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


More information about the Xfce4-commits mailing list