I forgot to include this file move in my last commit.
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 9 Sep 1999 03:35:32 +0000 (03:35 +0000)
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 9 Sep 1999 03:35:32 +0000 (03:35 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@637 f5534014-38df-0310-8fa8-9805f1628bb7

gtk/filter_prefs.c [moved from filter.c with 98% similarity]
gtk/filter_prefs.h [moved from filter.h with 86% similarity]

similarity index 98%
rename from filter.c
rename to gtk/filter_prefs.c
index 50a4cc46d72236d60d6656919235f94ab0d0495c..a9214b853868a8813df6b1a1d03f6a2ddf8970d8 100644 (file)
--- a/filter.c
@@ -1,7 +1,7 @@
 /* filter.c
  * Routines for managing filter sets
  *
- * $Id: filter.c,v 1.16 1999/09/09 02:42:25 gram Exp $
+ * $Id: filter_prefs.c,v 1.1 1999/09/09 03:35:31 gram Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@zing.org>
 #endif
 
 #include "gtk/main.h"
-#include "filter.h"
+#include "filter_prefs.h"
 #include "packet.h"
 #include "file.h"
-#include "prefs.h"
+#include "prefs_dlg.h"
 
 #define E_FILT_NAME_KEY "filter_name"
 #define E_FILT_LBL_KEY  "filter_label"
 #define E_FILT_CM_KEY   "in_cancel_mode"
 
+typedef struct _filter_def {
+  char *name;
+  char *strval;
+} filter_def;
+
+typedef struct _filter_cb_data {
+  GList     *fl;
+  GtkWidget *win;
+} filter_cb_data;
+
+
 GtkWidget   *filter_l, *chg_bt, *copy_bt, *del_bt, *name_te, *filter_te;
 GList       *fl = NULL;
 
similarity index 86%
rename from filter.h
rename to gtk/filter_prefs.h
index 23fbe661a4a14182627c2ebbc9a44d592a41c886..450a444738e283848c8d4696ffc09006238fe103 100644 (file)
--- a/filter.h
@@ -1,7 +1,7 @@
 /* filter.h
  * Definitions for packet filter window
  *
- * $Id: filter.h,v 1.4 1998/10/13 02:10:55 gerald Exp $
+ * $Id: filter_prefs.h,v 1.1 1999/09/09 03:35:32 gram Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@zing.org>
 #ifndef __FILTER_H__
 #define __FILTER_H__
 
-typedef struct _filter_def {
-  char *name;
-  char *strval;
-} filter_def;
-
-typedef struct _filter_cb_data {
-  GList     *fl;
-  GtkWidget *win;
-} filter_cb_data;
-
 GtkWidget *filter_prefs_show(GtkWidget *);
 void       filter_sel_list_cb(GtkWidget *, gpointer);
 void       filter_sel_new_cb(GtkWidget *, gpointer);