diff options
author | Gerald Combs <gerald@wireshark.org> | 2013-02-08 18:07:34 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2013-02-08 18:07:34 +0000 |
commit | d21f62b73b84086173901da197fe15eaa4e9dcce (patch) | |
tree | d14fa98879d71abccd2c8f3003090565c1890326 /epan/prefs-int.h | |
parent | c7525936983ae67912df1baffbddf60a2e69242b (diff) | |
download | wireshark-d21f62b73b84086173901da197fe15eaa4e9dcce.tar.gz wireshark-d21f62b73b84086173901da197fe15eaa4e9dcce.tar.bz2 wireshark-d21f62b73b84086173901da197fe15eaa4e9dcce.zip |
Add a directory name preference type (PREF_DIRNAME) and registration
routine (prefs_register_directory_preference). Add PREF_FILENAME and
PREF_DIRNAME support to the Qt module preferences. Change a couple of
preferences to directory names.
Clean up some names and default settings.
svn path=/trunk/; revision=47573
Diffstat (limited to 'epan/prefs-int.h')
-rw-r--r-- | epan/prefs-int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/prefs-int.h b/epan/prefs-int.h index 2da275397a..46c19429f0 100644 --- a/epan/prefs-int.h +++ b/epan/prefs-int.h @@ -102,7 +102,8 @@ typedef enum { PREF_FILENAME, PREF_COLOR, /* XXX - These are only supported for "internal" (non-protocol) */ PREF_CUSTOM, /* use and not as a generic protocol preference */ - PREF_OBSOLETE + PREF_OBSOLETE, + PREF_DIRNAME } pref_type_t; /** Struct to hold preference data */ |