Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
7b226da6
Commit
7b226da6
authored
Oct 25, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plugin: remove non-existent subcategory hint items type
parent
d8d74407
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
12 deletions
+0
-12
include/vlc_plugin.h
include/vlc_plugin.h
+0
-8
src/config/help.c
src/config/help.c
+0
-3
src/libvlc-module.c
src/libvlc-module.c
+0
-1
No files found.
include/vlc_plugin.h
View file @
7b226da6
...
...
@@ -110,8 +110,6 @@ enum vlc_module_properties
/* Configuration hint types */
#define CONFIG_HINT_CATEGORY 0x02
/* Start of new category */
#define CONFIG_HINT_SUBCATEGORY 0x03
/* Start of sub-category */
#define CONFIG_HINT_SUBCATEGORY_END 0x04
/* End of sub-category */
#define CONFIG_HINT_USAGE 0x05
/* Usage information */
#define CONFIG_CATEGORY 0x06
/* Set category */
...
...
@@ -362,12 +360,6 @@ VLC_METADATA_EXPORTS
#define add_category_hint( text, longtext, advc ) \
add_typeadv_inner( CONFIG_HINT_CATEGORY, text, longtext, advc )
#define add_subcategory_hint( text, longtext ) \
add_typedesc_inner( CONFIG_HINT_SUBCATEGORY, text, longtext )
#define end_subcategory_hint \
add_type_inner( CONFIG_HINT_SUBCATEGORY_END )
#define add_usage_hint( text ) \
add_typedesc_inner( CONFIG_HINT_USAGE, text, NULL )
...
...
src/config/help.c
View file @
7b226da6
...
...
@@ -417,9 +417,6 @@ static void Usage (vlc_object_t *p_this, char const *psz_search)
}
break
;
case
CONFIG_HINT_SUBCATEGORY
:
if
(
strcmp
(
"main"
,
objname
)
)
break
;
case
CONFIG_SECTION
:
p_section
=
p_item
;
break
;
...
...
src/libvlc-module.c
View file @
7b226da6
...
...
@@ -1440,7 +1440,6 @@ static const char *const mouse_wheel_texts[] =
* Quick usage guide for the configuration options:
*
* add_category_hint( N_(text), N_(longtext), b_advanced_option )
* add_subcategory_hint( N_(text), N_(longtext), b_advanced_option )
* add_usage_hint( N_(text), b_advanced_option )
* add_string( option_name, value, N_(text), N_(longtext),
b_advanced_option )
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment