[vlc-devel] [PATCH 7/12] config: fix wrong documentation
Lyndon Brown
jnqnfe at gmail.com
Fri Sep 25 00:30:35 CEST 2020
From: Lyndon Brown <jnqnfe at gmail.com>
Date: Tue, 26 Mar 2019 03:49:53 +0000
Subject: config: fix wrong documentation
mistake comes from d53bf1b3f19877911bdac7172a139e063ed81155
"internal" (aka private, aka gui-hidden) options are most certainly
shown in help output; this includes --help for instance!
diff --git a/include/vlc_configuration.h b/include/vlc_configuration.h
index d4b8fc2473..7365dce54a 100644
--- a/include/vlc_configuration.h
+++ b/include/vlc_configuration.h
@@ -76,7 +76,7 @@ struct module_config_t
{
uint8_t i_type; /**< Configuration type */
char i_short; /**< Optional short option name */
- unsigned b_internal:1; /**< Hidden from preferences and help */
+ unsigned b_internal:1; /**< Hidden from GUI preferences but not help */
unsigned b_unsaveable:1; /**< Not stored in configuration */
unsigned b_safe:1; /**< Safe for web plugins and playlist files */
unsigned b_removed:1; /**< Obsolete */
More information about the vlc-devel
mailing list