aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/sctp_byte_graph_dlg.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-11 20:31:05 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-11 20:31:05 +0000
commitdd34e98e1b17df6874074d7be3acb6581cb1a92b (patch)
tree9e48065acb469bf4ace00ece81564ec45c04d582 /gtk/sctp_byte_graph_dlg.c
parent4e714b79d4f9e5dbe1e2a3aaf72d86ad7c2377ef (diff)
replace WIDGET_SET_SIZE with gtk_widget_set_size_request
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24910 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/sctp_byte_graph_dlg.c')
-rw-r--r--gtk/sctp_byte_graph_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/sctp_byte_graph_dlg.c b/gtk/sctp_byte_graph_dlg.c
index 4c053d9e41..5985291df3 100644
--- a/gtk/sctp_byte_graph_dlg.c
+++ b/gtk/sctp_byte_graph_dlg.c
@@ -1187,7 +1187,7 @@ static void create_draw_area(GtkWidget *box, struct sctp_udata *u_data)
SIGNAL_CONNECT(u_data->io->draw_area, "destroy", quit, u_data);
g_object_set_data(G_OBJECT(u_data->io->draw_area), "sctp_graph_t", u_data->io);
- WIDGET_SET_SIZE(u_data->io->draw_area, u_data->io->pixmap_width, u_data->io->pixmap_height);
+ gtk_widget_set_size_request(u_data->io->draw_area, u_data->io->pixmap_width, u_data->io->pixmap_height);
/* signals needed to handle backing pixmap */
SIGNAL_CONNECT(u_data->io->draw_area, "expose_event", expose_event, NULL);