aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/file_dlg.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-12-10 06:28:24 +0000
committerGuy Harris <guy@alum.mit.edu>1999-12-10 06:28:24 +0000
commit7537c5cc73a859fa05c5c9c2b1a0c784f0a5b69e (patch)
tree9479154ba74d84098245a16b67edec8d2f24528c /gtk/file_dlg.c
parent95cdaa0c309c5c4fb47df08f3b4b96007ffb7b19 (diff)
Jerry Talkington's patch to remove the filter stuff from
"Edit:Preferences" and put it directly under "Edit:Filters", and to add an "Apply" button to it, which makes the currently selected filter the current filter and applies it to the current capture. svn path=/trunk/; revision=1275
Diffstat (limited to 'gtk/file_dlg.c')
-rw-r--r--gtk/file_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/file_dlg.c b/gtk/file_dlg.c
index 40672ba555..02e8aa4264 100644
--- a/gtk/file_dlg.c
+++ b/gtk/file_dlg.c
@@ -1,7 +1,7 @@
/* file_dlg.c
* Dialog boxes for handling files
*
- * $Id: file_dlg.c,v 1.14 1999/12/09 07:19:17 guy Exp $
+ * $Id: file_dlg.c,v 1.15 1999/12/10 06:28:18 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -94,7 +94,7 @@ file_open_cmd_cb(GtkWidget *w, gpointer data) {
filter_bt = gtk_button_new_with_label("Filter:");
gtk_signal_connect(GTK_OBJECT(filter_bt), "clicked",
- GTK_SIGNAL_FUNC(prefs_cb), (gpointer) E_PR_PG_FILTER);
+ GTK_SIGNAL_FUNC(filter_dialog_cb), NULL);
gtk_box_pack_start(GTK_BOX(filter_hbox), filter_bt, FALSE, TRUE, 0);
gtk_widget_show(filter_bt);