diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-12-29 19:59:05 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-12-29 19:59:05 +0000 |
commit | 4b3792824634a5b6e4ab151fdb5aab90c4ea330c (patch) | |
tree | 09be8a5f30b43e9ad48cae5ec9c9a22a71416bb4 /prefs.h | |
parent | 52ce0b5f48984e50ed3b3656dd2e133daff9dba2 (diff) | |
download | wireshark-4b3792824634a5b6e4ab151fdb5aab90c4ea330c.tar.gz wireshark-4b3792824634a5b6e4ab151fdb5aab90c4ea330c.tar.bz2 wireshark-4b3792824634a5b6e4ab151fdb5aab90c4ea330c.zip |
Make the "max count of recently-visited files" preference unsigned.
Get rid of an unused variable.
Fix up whitespace.
svn path=/trunk/; revision=9475
Diffstat (limited to 'prefs.h')
-rw-r--r-- | prefs.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ /* prefs.h * Definitions for preference handling routines * - * $Id: prefs.h,v 1.52 2003/12/28 21:10:26 sharpe Exp $ + * $Id: prefs.h,v 1.53 2003/12/29 19:56:24 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -85,8 +85,8 @@ typedef struct _e_prefs { gint gui_geometry_main_y; gint gui_geometry_main_width; gint gui_geometry_main_height; - guint gui_fileopen_style; - gint gui_recent_files_count_max; + guint gui_fileopen_style; + guint gui_recent_files_count_max; gchar *gui_fileopen_dir; gchar *gui_fileopen_remembered_dir; guint32 name_resolve; |