aboutsummaryrefslogtreecommitdiffstats
path: root/ui_util.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-09 06:48:40 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-09 06:48:40 +0000
commit11d8817da0148daa1cda2db873a3ec31c0c02a69 (patch)
tree3958ce9f0093b2fb5c831ed58c5adb1a660df655 /ui_util.h
parentc7cee4331f5586c7987a82caaf93351f07ec288e (diff)
Don't automatically size the columns - that's expensive in large
captures, as it has to compute the width of an auto-resizing column in every row. Just pick fixed widths for the columns (and tune the width of the "Protocol" column so that it's not narrower than the column title). svn path=/trunk/; revision=9219
Diffstat (limited to 'ui_util.h')
-rw-r--r--ui_util.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/ui_util.h b/ui_util.h
index 2d7809ee6d..8c0bc11332 100644
--- a/ui_util.h
+++ b/ui_util.h
@@ -1,7 +1,7 @@
/* ui_util.h
* Definitions for UI utility routines
*
- * $Id: ui_util.h,v 1.13 2003/12/06 04:05:02 guy Exp $
+ * $Id: ui_util.h,v 1.14 2003/12/09 06:48:38 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -37,9 +37,6 @@ void packet_list_clear(void);
void packet_list_freeze(void);
void packet_list_thaw(void);
void packet_list_select_row(gint);
-void packet_list_set_column_auto_resize(gint, gboolean);
-void packet_list_set_column_resizeable(gint, gboolean);
-void packet_list_set_column_width(gint, gint);
void packet_list_moveto_end(void);
gint packet_list_append(gchar *text[], gpointer data);
void packet_list_set_colors(gint, color_t *, color_t *);