aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-01-16 22:43:58 +0000
committerBill Meier <wmeier@newsguy.com>2013-01-16 22:43:58 +0000
commitf0f5583ce4d857bab7dc8b5922287fc14dbbf5ac (patch)
tree406add987fb3bc978a8670d94df7dca69c91afcc /ui
parent4bceaa501a49b93f95f7de304015aecb1bdca1e3 (diff)
Remove redundant call to gtk_box_set_child_packing().
svn path=/trunk/; revision=47128
Diffstat (limited to 'ui')
-rw-r--r--ui/gtk/sctp_byte_graph_dlg.c1
-rw-r--r--ui/gtk/sctp_graph_dlg.c1
-rw-r--r--ui/gtk/tcp_graph.c1
3 files changed, 0 insertions, 3 deletions
diff --git a/ui/gtk/sctp_byte_graph_dlg.c b/ui/gtk/sctp_byte_graph_dlg.c
index b9c81b3dbc..364d6016d2 100644
--- a/ui/gtk/sctp_byte_graph_dlg.c
+++ b/ui/gtk/sctp_byte_graph_dlg.c
@@ -1266,7 +1266,6 @@ static void init_sctp_graph_window(struct sctp_udata *u_data)
gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
gtk_button_box_set_layout(GTK_BUTTON_BOX (hbox), GTK_BUTTONBOX_SPREAD);
gtk_box_set_spacing(GTK_BOX (hbox), 0);
- gtk_box_set_child_packing(GTK_BOX(vbox), hbox, FALSE, FALSE, 0, GTK_PACK_START);
gtk_widget_show(hbox);
sack_bt = gtk_button_new_with_label ("Adv. Rec. Window");
diff --git a/ui/gtk/sctp_graph_dlg.c b/ui/gtk/sctp_graph_dlg.c
index 96ba1684da..9160e3a09e 100644
--- a/ui/gtk/sctp_graph_dlg.c
+++ b/ui/gtk/sctp_graph_dlg.c
@@ -1685,7 +1685,6 @@ init_sctp_graph_window(struct sctp_udata *u_data)
gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
gtk_button_box_set_layout(GTK_BUTTON_BOX (hbox), GTK_BUTTONBOX_SPREAD);
gtk_box_set_spacing(GTK_BOX (hbox), 0);
- gtk_box_set_child_packing(GTK_BOX(vbox), hbox, FALSE, FALSE, 0, GTK_PACK_START);
gtk_widget_show(hbox);
sack_bt = gtk_button_new_with_label ("Show Only Sacks");
gtk_box_pack_start(GTK_BOX(hbox), sack_bt, FALSE, FALSE, 0);
diff --git a/ui/gtk/tcp_graph.c b/ui/gtk/tcp_graph.c
index 850e71f734..b9ffd08c50 100644
--- a/ui/gtk/tcp_graph.c
+++ b/ui/gtk/tcp_graph.c
@@ -828,7 +828,6 @@ static void create_drawing_area(struct graph *g)
hbox = ws_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3, FALSE);
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5);
gtk_container_set_border_width(GTK_CONTAINER(hbox), 3);
- gtk_box_set_child_packing(GTK_BOX(vbox), hbox, FALSE, FALSE, 0, GTK_PACK_START);
gtk_widget_show(hbox);
create_ctrl_area(g, hbox);