diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2008-04-12 19:37:05 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2008-04-12 19:37:05 +0000 |
commit | 41e9bde0371c5802136fc3081097e5104c75d024 (patch) | |
tree | 8fe3fe8012da7eda78ef6d348d0f68a7a638926d /epan/column.c | |
parent | 2b19b4e07ed2667a6226865a8197715e6ad45c76 (diff) | |
download | wireshark-41e9bde0371c5802136fc3081097e5104c75d024.tar.gz wireshark-41e9bde0371c5802136fc3081097e5104c75d024.tar.bz2 wireshark-41e9bde0371c5802136fc3081097e5104c75d024.zip |
Added an option to save column widths in the recent file.
Not 100% implemented for usage with configuration profiles with
different column layout yet, as this requires some of the recent
values to be saved in each profile.
svn path=/trunk/; revision=24949
Diffstat (limited to 'epan/column.c')
-rw-r--r-- | epan/column.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/column.c b/epan/column.c index d7348e11c5..58a346a09b 100644 --- a/epan/column.c +++ b/epan/column.c @@ -647,7 +647,7 @@ get_column_title(gint col) { return(cfmt->title); } -gchar * +const gchar * get_column_custom_field(gint col) { GList *clp = g_list_nth(prefs.col_list, col); fmt_data *cfmt; |