diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-07-22 21:56:25 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-07-22 21:56:25 +0000 |
commit | 4b66d25227aa82ae8c34bb291443c11d543d1cc9 (patch) | |
tree | f40a6c548eb75ed87978bf5d9dca070cf4bc7cfe /column.h | |
parent | 6b664c122cb9818b0ddebb1a1cf9045439644383 (diff) | |
download | wireshark-4b66d25227aa82ae8c34bb291443c11d543d1cc9.tar.gz wireshark-4b66d25227aa82ae8c34bb291443c11d543d1cc9.tar.bz2 wireshark-4b66d25227aa82ae8c34bb291443c11d543d1cc9.zip |
"col_format_to_pref_str()" is used only in "prefs.c", and knows about
the format of string lists in a preferences file; rename it to
"put_string_list()", make it take the list as an argument rather than
working only on "prefs.col_list", and put it in "prefs.c".
svn path=/trunk/; revision=3776
Diffstat (limited to 'column.h')
-rw-r--r-- | column.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* column.h * Definitions for column handling routines * - * $Id: column.h,v 1.7 2000/01/10 01:43:48 guy Exp $ + * $Id: column.h,v 1.8 2001/07/22 21:56:25 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -44,7 +44,6 @@ void get_column_format_matches(gboolean *, gint); gint get_column_format_from_str(gchar *); enum col_resize_type get_column_resize_type(gint); gchar *get_column_title(gint); -gchar *col_format_to_pref_str(void); char *get_column_longest_string(gint); gint get_column_char_width(gint format); |