Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
5b935e5c
Commit
5b935e5c
authored
May 15, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Const police
parent
3cf4ef1e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/vlc_config_cat.h
include/vlc_config_cat.h
+2
-2
modules/gui/qt4/components/complete_preferences.cpp
modules/gui/qt4/components/complete_preferences.cpp
+1
-1
No files found.
include/vlc_config_cat.h
View file @
5b935e5c
...
...
@@ -295,7 +295,7 @@ static struct config_category_t categories_array[] =
{
-
1
,
NULL
,
NULL
}
};
static
inline
char
*
config_CategoryNameGet
(
int
i_value
)
static
inline
c
onst
c
har
*
config_CategoryNameGet
(
int
i_value
)
{
int
i
=
0
;
while
(
categories_array
[
i
].
psz_name
!=
NULL
)
...
...
@@ -309,7 +309,7 @@ static inline char *config_CategoryNameGet( int i_value )
return
NULL
;
}
static
inline
char
*
config_CategoryHelpGet
(
int
i_value
)
static
inline
c
onst
c
har
*
config_CategoryHelpGet
(
int
i_value
)
{
int
i
=
0
;
while
(
categories_array
[
i
].
psz_help
!=
NULL
)
...
...
modules/gui/qt4/components/complete_preferences.cpp
View file @
5b935e5c
...
...
@@ -97,7 +97,7 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) :
for
(
size_t
i
=
0
;
i
<
p_module
->
confsize
;
i
++
)
{
const
module_config_t
*
p_item
=
p_module
->
p_config
+
i
;
char
*
psz_help
;
c
onst
c
har
*
psz_help
;
QIcon
icon
;
switch
(
p_item
->
i_type
)
{
...
...
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