aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_info_dlg.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2008-04-11 20:31:05 +0000
committerUlf Lamping <ulf.lamping@web.de>2008-04-11 20:31:05 +0000
commitc6d13dc2c826bf3d5ce2fdd640ef141a2708f13c (patch)
tree9e48065acb469bf4ace00ece81564ec45c04d582 /gtk/capture_info_dlg.c
parenta471e1af908be6d14fb6abc55259e5edb0dccc56 (diff)
replace WIDGET_SET_SIZE with gtk_widget_set_size_request
svn path=/trunk/; revision=24910
Diffstat (limited to 'gtk/capture_info_dlg.c')
-rw-r--r--gtk/capture_info_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/capture_info_dlg.c b/gtk/capture_info_dlg.c
index d320c07984..3d1917c30c 100644
--- a/gtk/capture_info_dlg.c
+++ b/gtk/capture_info_dlg.c
@@ -212,7 +212,7 @@ const gchar *iface)
/* downsize the default size of this progress bar in x direction (def:150), */
/* otherwise it will become too large and the dialog will look ugly */
/* XXX: use a TreeView instead of a table in order to fix this */
- WIDGET_SET_SIZE(info->counts[i].percent_pb, 70, -1);
+ gtk_widget_set_size_request(info->counts[i].percent_pb, 70, -1);
}
info->counts[i].percent_lb = gtk_label_new("0.0%");