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
443738ce
Commit
443738ce
authored
Apr 15, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetic change
parent
04574a29
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
modules/gui/qt4/components/complete_preferences.cpp
modules/gui/qt4/components/complete_preferences.cpp
+7
-7
No files found.
modules/gui/qt4/components/complete_preferences.cpp
View file @
443738ce
...
...
@@ -79,24 +79,24 @@ PrefsTree::PrefsTree( intf_thread_t *_p_intf, QWidget *_parent ) :
#undef BI
/* Build the tree for the main module */
module_t
*
p_module
=
NULL
;
const
module_t
*
p_module
=
NULL
;
vlc_list_t
*
p_list
=
vlc_list_find
(
p_intf
,
VLC_OBJECT_MODULE
,
FIND_ANYWHERE
);
if
(
!
p_list
)
return
;
for
(
int
i_index
=
0
;
p_module
==
NULL
;
i_index
++
)
for
(
unsigned
i
=
0
;
p_module
==
NULL
;
i
++
)
{
assert
(
i
_index
<
p_list
->
i_count
);
assert
(
i
<
(
unsigned
)
p_list
->
i_count
);
p_module
=
(
module_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
if
(
strcmp
(
p_m
odule
->
psz_object_name
,
"main"
)
)
p_module
=
NULL
;
const
module_t
*
p_main
=
(
module_t
*
)
p_list
->
p_values
[
i
].
p_object
;
if
(
strcmp
(
p_m
ain
->
psz_object_name
,
"main"
)
==
0
)
p_module
=
p_main
;
}
PrefsItemData
*
data
=
NULL
;
QTreeWidgetItem
*
current_item
=
NULL
;
for
(
size_t
i
=
0
;
i
<
p_module
->
confsize
;
i
++
)
{
module_config_t
*
p_item
=
p_module
->
p_config
+
i
;
const
module_config_t
*
p_item
=
p_module
->
p_config
+
i
;
char
*
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