Clean up some comments in the preferences file.

Automatic software updates are now supported in macOS as well.

In the file, the channel name doesn't have UPDATE_CHANNEL_ in front of
it; it's just DEVELOPMENT or STABLE.

Change-Id: I11a8e10b3c0ee6c4eec2568bf94d42c4098b82a5
Reviewed-on: https://code.wireshark.org/review/36207
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2020-02-26 21:17:11 -08:00
parent 3383667106
commit e1e8e2dce9
1 changed files with 2 additions and 2 deletions

View File

@ -3294,12 +3294,12 @@ prefs_register_modules(void)
prefs_register_bool_preference(gui_module, "update.enabled",
"Check for updates",
"Check for updates (Windows only)",
"Check for updates (Windows and macOS only)",
&prefs.gui_update_enabled);
prefs_register_enum_preference(gui_module, "update.channel",
"Update channel",
"The type of update to fetch. You should probably leave this set to UPDATE_CHANNEL_STABLE.",
"The type of update to fetch. You should probably leave this set to STABLE.",
(gint*)(void*)(&prefs.gui_update_channel), gui_update_channel, FALSE);
prefs_register_uint_preference(gui_module, "update.interval",