aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/macros_dlg.c
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-02-09 03:11:14 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-02-09 03:11:14 +0000
commit7c57c05ed55c1dca6a8d2a6abc34a34d8835cdb8 (patch)
tree4d69137c290e28198dee5fa24280bbb77d30222c /gtk/macros_dlg.c
parent7de24ea51b4397defb37edf9744ca2f69523b3a6 (diff)
* Add a Submenu (/Views/User Tables) where UATs can be accessed.
* Remove macros_dlg, the DFMacros UAT goes in the menu with all the rest * in packet-user_encap.c WTAP_ENCAP=XXX has become useless information for the user leave just the DLT# svn path=/trunk/; revision=20753
Diffstat (limited to 'gtk/macros_dlg.c')
-rw-r--r--gtk/macros_dlg.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/gtk/macros_dlg.c b/gtk/macros_dlg.c
deleted file mode 100644
index 6050572c74..0000000000
--- a/gtk/macros_dlg.c
+++ /dev/null
@@ -1,41 +0,0 @@
-/* macros_dlg.c
- *
- * $Id$
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 2001 Gerald Combs
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#include <gtk/gtk.h>
-
-#include <epan/dfilter/dfilter-macro.h>
-#include <stdlib.h>
-#include <epan/uat.h>
-#include "uat_gui.h"
-#include "macros_dlg.h"
-
-void macros_dialog_cb(GtkWidget *w _U_, gpointer data _U_) {
- void* dfmuat;
- dfilter_macro_get_uat(&dfmuat);
- uat_window(dfmuat);
-}
-