diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2010-10-09 15:22:53 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2010-10-09 15:22:53 +0000 |
commit | ccfe41300c2379e66404f60e7464a90c2adc72c3 (patch) | |
tree | 4a7ce48818a46730e140189780f0af5436acf97f /gtk/prefs_column.c | |
parent | 20cdf3194c15e0da673e7b808a86fa3f46ffcb1f (diff) | |
download | wireshark-ccfe41300c2379e66404f60e7464a90c2adc72c3.tar.gz wireshark-ccfe41300c2379e66404f60e7464a90c2adc72c3.tar.bz2 wireshark-ccfe41300c2379e66404f60e7464a90c2adc72c3.zip |
Added "Edit Column Details" functions to the packet list heading popup.
Removed "Rename Column Title" as this is moved to "Edit Column Details".
svn path=/trunk/; revision=34444
Diffstat (limited to 'gtk/prefs_column.c')
-rw-r--r-- | gtk/prefs_column.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gtk/prefs_column.c b/gtk/prefs_column.c index 7de63225f5..8a123a674c 100644 --- a/gtk/prefs_column.c +++ b/gtk/prefs_column.c @@ -394,16 +394,6 @@ column_prefs_add_custom(gint fmt, const gchar *title, const gchar *custom_field, } void -column_prefs_rename(gint col, const gchar *title) -{ - GList *clp = g_list_nth(prefs.col_list, col); - fmt_data *cfmt = (fmt_data *) clp->data; - - g_free (cfmt->title); - cfmt->title = g_strdup(title); -} - -void column_prefs_remove(gint col) { GList *clp = g_list_nth(prefs.col_list, col); |