diff options
author | Max Kellermann <max@duempel.org> | 2015-06-26 00:10:18 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-06-26 00:11:33 +0200 |
commit | f415167e5980908f8719cf5778ca2758ba46e53b (patch) | |
tree | d4faba6b26f3bd5e8c4444ddca8255706b15d5b8 /src/config/ConfigTemplates.cxx | |
parent | 9477db236329a17891105c68bda99073196a3f69 (diff) | |
download | mpd-f415167e5980908f8719cf5778ca2758ba46e53b.tar.gz mpd-f415167e5980908f8719cf5778ca2758ba46e53b.tar.xz mpd-f415167e5980908f8719cf5778ca2758ba46e53b.zip |
config/Templates: add attribute "deprecated"
Diffstat (limited to 'src/config/ConfigTemplates.cxx')
-rw-r--r-- | src/config/ConfigTemplates.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config/ConfigTemplates.cxx b/src/config/ConfigTemplates.cxx index 7d28d9ffc..44eb6c252 100644 --- a/src/config/ConfigTemplates.cxx +++ b/src/config/ConfigTemplates.cxx @@ -70,9 +70,9 @@ const ConfigTemplate config_param_templates[] = { { "gapless_mp3_playback" }, { "auto_update" }, { "auto_update_depth" }, - { "despotify_user" }, - { "despotify_password" }, - { "despotify_high_bitrate" }, + { "despotify_user", false, true }, + { "despotify_password", false, true }, + { "despotify_high_bitrate", false, true }, }; static constexpr unsigned n_config_param_templates = |