summaryrefslogtreecommitdiff
path: root/prefs.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-12-10 04:21:04 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-12-10 04:21:04 +0000
commit71b7cd503102829502ddff1667cd98a468e28c91 (patch)
tree5f561b5f4b780e8e84294440d4aecee2a9c47cca /prefs.h
parent9bd3c4224bef06341e271a901ab69f28de15922d (diff)
downloadwireshark-71b7cd503102829502ddff1667cd98a468e28c91.tar.gz
Move GTK code out of summary.c and into gtk/summary_dlg.c
summary.c now provides a struct of info (see summary.h) Changed the name of the summary dialogue callback (hence the change in menu.c), and added a close button to the dialogue. Moved #include <gtk/gtk.h> out of print.c and into prefs.h where it was needed for GdkColor. svn path=/trunk/; revision=1273
Diffstat (limited to 'prefs.h')
-rw-r--r--prefs.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/prefs.h b/prefs.h
index addc7ed8dc..2a6f680dfb 100644
--- a/prefs.h
+++ b/prefs.h
@@ -1,7 +1,7 @@
/* prefs.h
* Definitions for preference handling routines
*
- * $Id: prefs.h,v 1.9 1999/12/02 04:30:03 gerald Exp $
+ * $Id: prefs.h,v 1.10 1999/12/10 04:20:53 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -32,6 +32,10 @@
#define PR_DEST_CMD 0
#define PR_DEST_FILE 1
+#ifndef __GTK_H__
+#include <gtk/gtk.h>
+#endif
+
typedef struct _e_prefs {
gint pr_format;
gint pr_dest;