[Xfce4-commits] [panel-plugins/xfce4-genmon-plugin] 04/27: Use GtkBox instead of XfceHVBox

noreply at xfce.org noreply at xfce.org
Tue May 31 21:29:47 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-genmon-plugin.

commit 9ed063ea26c83caea2110def3441e8f92f18de84
Author: ToZ <toz at localhost.localdomain>
Date:   Sat May 14 10:54:44 2016 -0400

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

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index a18fbe8..a819cb9 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -295,7 +295,7 @@ static genmon_t *genmon_create_control (XfcePanelPlugin *plugin)
 
     xfce_panel_plugin_add_action_widget (plugin, poMonitor->wEventBox);
 
-    poMonitor->wBox = xfce_hvbox_new (orientation, FALSE, 0);
+    poMonitor->wBox = gtk_box_new (orientation, 0);
     gtk_widget_show (poMonitor->wBox);
     gtk_container_set_border_width (GTK_CONTAINER
         (poMonitor->wBox), BORDER);
@@ -309,7 +309,7 @@ static genmon_t *genmon_create_control (XfcePanelPlugin *plugin)
         GTK_WIDGET (poMonitor->wTitle), FALSE, FALSE, 0);
 
     /* Create a Box to put image and text */
-    poMonitor->wImgBox = xfce_hvbox_new (orientation, FALSE, 0);
+    poMonitor->wImgBox = gtk_box_new (orientation, 0);
     gtk_widget_show (poMonitor->wImgBox);
     gtk_container_set_border_width (GTK_CONTAINER
         (poMonitor->wImgBox), 0);

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


More information about the Xfce4-commits mailing list