aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/column_prefs.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-22 09:50:54 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-22 09:50:54 +0000
commit432ad02810e75e70ef52cb2faf2ef16077d88716 (patch)
tree5bd7187b54fa0216232d97f4d55320484c21f5a6 /gtk/column_prefs.c
parentab96c5694efe518f81314b8fa5b48fe8f5bac8aa (diff)
Eliminate some unused variables.
svn path=/trunk/; revision=5224
Diffstat (limited to 'gtk/column_prefs.c')
-rw-r--r--gtk/column_prefs.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/gtk/column_prefs.c b/gtk/column_prefs.c
index fa11a4d3c3..cf549bdf7e 100644
--- a/gtk/column_prefs.c
+++ b/gtk/column_prefs.c
@@ -1,7 +1,7 @@
/* column_prefs.c
* Dialog box for column preferences
*
- * $Id: column_prefs.c,v 1.9 2002/04/22 02:03:53 gerald Exp $
+ * $Id: column_prefs.c,v 1.10 2002/04/22 09:50:54 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -36,8 +36,7 @@
#include "prefs.h"
#include "column.h"
-static GtkWidget *column_l, *chg_bt, *del_bt, *title_te, *fmt_m, *up_bt,
- *dn_bt;
+static GtkWidget *column_l, *del_bt, *title_te, *fmt_m, *up_bt, *dn_bt;
static gint cur_fmt, cur_row;
static void column_list_select_cb(GtkCList *clist, gint row, gint column,
@@ -57,8 +56,8 @@ void column_set_arrow_button_sensitivity(GList *);
/* Called when the 'Columns' preference notebook page is selected. */
GtkWidget *
column_prefs_show() {
- GtkWidget *main_vb, *top_hb, *list_bb, *new_bt, *column_sc, *nl_item,
- *nl_lb, *tb, *lb, *menu, *mitem, *arrow_hb;
+ GtkWidget *main_vb, *top_hb, *list_bb, *new_bt, *column_sc,
+ *tb, *lb, *menu, *mitem, *arrow_hb;
GList *clp = NULL;
fmt_data *cfmt;
gint i, row;
@@ -262,9 +261,8 @@ column_list_new_cb(GtkWidget *w _U_, gpointer data _U_) {
static void
column_list_delete_cb(GtkWidget *w _U_, gpointer data _U_) {
- GList *sl, *clp;
+ GList *clp;
fmt_data *cfmt;
- GtkObject *l_item;
gint pos;
g_assert(cur_row >= 0);