aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-10-07 05:03:16 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-10-07 05:03:16 +0000
commitf4938ecf333a02be0b541accdb2ee6f7878cb8f8 (patch)
tree588d0e2f7f3ff2aeeb9475bfacded940b019726c
parentc7820529f566d7c4c398f15c34b265147f8840a7 (diff)
downloadwireshark-f4938ecf333a02be0b541accdb2ee6f7878cb8f8.tar.gz
wireshark-f4938ecf333a02be0b541accdb2ee6f7878cb8f8.tar.bz2
wireshark-f4938ecf333a02be0b541accdb2ee6f7878cb8f8.zip
From Jim Young:
Add "Drag and Drop entries..." message on Columns preferences page. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4099 svn path=/trunk/; revision=30381
-rw-r--r--gtk/prefs_column.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/prefs_column.c b/gtk/prefs_column.c
index 04f7569729..11c7da1cf6 100644
--- a/gtk/prefs_column.c
+++ b/gtk/prefs_column.c
@@ -93,7 +93,7 @@ column_prefs_show(GtkWidget *prefs_window) {
gtk_widget_show (list_vb);
gtk_box_pack_start (GTK_BOX (main_vb), list_vb, TRUE, TRUE, 0);
- list_lb = gtk_label_new (("[The first list entry will be displayed as the leftmost column]"));
+ list_lb = gtk_label_new (("[The first list entry will be displayed as the leftmost column - Drag and drop entries to change column order]"));
gtk_widget_show (list_lb);
gtk_box_pack_start (GTK_BOX (list_vb), list_lb, FALSE, FALSE, 0);
@@ -272,7 +272,7 @@ column_list_new_cb(GtkWidget *w _U_, gpointer data) {
GtkTreePath *path;
GtkTreeViewColumn *title_column;
- cur_fmt = COL_NUMBER;
+ cur_fmt = COL_NUMBER; /* Set the default new column type */
cfmt = (fmt_data *) g_malloc(sizeof(fmt_data));
cfmt->title = g_strdup(title);
cfmt->fmt = g_strdup(col_format_to_string(cur_fmt));