aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/recent.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-01-19 03:46:43 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-01-19 03:46:43 +0000
commit0353c5823ffbd1e049eee11d3dc522a9d208a9c1 (patch)
tree6ae2fd42dd8a643a3953aa79ce352427b0cceeed /gtk/recent.h
parentc19c7677fb6d672bf07d0988b37b7775472de590 (diff)
downloadwireshark-0353c5823ffbd1e049eee11d3dc522a9d208a9c1.tar.gz
wireshark-0353c5823ffbd1e049eee11d3dc522a9d208a9c1.tar.bz2
wireshark-0353c5823ffbd1e049eee11d3dc522a9d208a9c1.zip
move timestamp format options from "View->Options" dialog into
menuitems under "View->Time Display Format". renamed timestamp enum items e.g. from ABSOLUTE to TS_ABSOLUTE, to prevent conflicting definitions with MSVC svn path=/trunk/; revision=9729
Diffstat (limited to 'gtk/recent.h')
-rw-r--r--gtk/recent.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/gtk/recent.h b/gtk/recent.h
index bf317f935c..1e603f98bf 100644
--- a/gtk/recent.h
+++ b/gtk/recent.h
@@ -2,7 +2,7 @@
* Definitions for recent "preference" handling routines
* Copyright 2004, Ulf Lamping <ulf.lamping@web.de>
*
- * $Id: recent.h,v 1.1 2004/01/19 00:42:11 ulfl Exp $
+ * $Id: recent.h,v 1.2 2004/01/19 03:46:43 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -37,17 +37,18 @@
#define RECENT_KEY_TREE_VIEW_SHOW "gui.tree_view_show"
#define RECENT_KEY_BYTE_VIEW_SHOW "gui.byte_view_show"
#define RECENT_KEY_STATUSBAR_SHOW "gui.statusbar_show"
-
+#define RECENT_GUI_TIME_FORMAT "gui.time_format"
typedef struct recent_settings_tag {
gboolean main_toolbar_show;
gboolean filter_toolbar_show;
gboolean packet_list_show;
- /*gboolean packet_list_height;*/
+ /*gboolean packet_list_height;*/
gboolean tree_view_show;
- /*gboolean tree_view_height;*/
+ /*gboolean tree_view_height;*/
gboolean byte_view_show;
gboolean statusbar_show;
+ gint gui_time_format;
} recent_settings_t;
extern recent_settings_t recent;