prefs: get rid of unused PREF_EFFECT_ flags.

Get rid of flags that are neither set nor tested.
This commit is contained in:
Guy Harris 2021-04-04 15:45:43 -07:00 committed by Wireshark GitLab Utility
parent 4637111f6d
commit d95213afb0
1 changed files with 2 additions and 5 deletions

View File

@ -139,11 +139,8 @@ WS_DLL_PUBLIC guint32 prefs_get_max_value(pref_t *pref);
/* Bitmask of flags for the effect of a preference in Wireshark */
#define PREF_EFFECT_DISSECTION (1u << 0)
#define PREF_EFFECT_CAPTURE (1u << 1)
#define PREF_EFFECT_GUI (1u << 2)
#define PREF_EFFECT_FONT (1u << 3)
#define PREF_EFFECT_GUI_LAYOUT (1u << 4)
#define PREF_EFFECT_FIELDS (1u << 5)
#define PREF_EFFECT_CUSTOM (1u << 31)
#define PREF_EFFECT_GUI_LAYOUT (1u << 2)
#define PREF_EFFECT_FIELDS (1u << 3)
/** Fetch flags that show the effect of the preference
*