aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/sip_stat.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-04-20 15:28:00 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-04-20 15:28:00 +0000
commit42310b6eb966e013ef209c7faa266fadbac5fa01 (patch)
treedd60318c0ebefec4150bbe2b8b8e0bf85fcb6118 /ui/gtk/sip_stat.c
parentb832d1d6ba058aaf3c964ce8eb8137a727b7342f (diff)
Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().
svn path=/trunk/; revision=42162
Diffstat (limited to 'ui/gtk/sip_stat.c')
-rw-r--r--ui/gtk/sip_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/sip_stat.c b/ui/gtk/sip_stat.c
index 4b60c79ec4..2d3205c78e 100644
--- a/ui/gtk/sip_stat.c
+++ b/ui/gtk/sip_stat.c
@@ -605,7 +605,7 @@ gtk_sipstat_init(const char *optarg, void *userdata _U_)
/* Create container for all widgets */
- main_vb = gtk_vbox_new(FALSE, 12);
+ main_vb = ws_gtk_box_new(GTK_ORIENTATION_VERTICAL, 12, FALSE);
gtk_container_set_border_width(GTK_CONTAINER(main_vb), 12);
gtk_container_add(GTK_CONTAINER(sp->win), main_vb);
@@ -673,7 +673,7 @@ gtk_sipstat_init(const char *optarg, void *userdata _U_)
gtk_container_add(GTK_CONTAINER(main_vb), request_fr);
gtk_container_set_border_width(GTK_CONTAINER(request_fr), 0);
- sp->request_box = gtk_vbox_new(FALSE, 10);
+ sp->request_box = ws_gtk_box_new(GTK_ORIENTATION_VERTICAL, 10, FALSE);
gtk_container_add(GTK_CONTAINER(request_fr), sp->request_box);
sp->average_setup_time = 0;