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
766e381d
Commit
766e381d
authored
Sep 30, 2012
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: adapt module_list_get calls for latest changes in core
parent
568303d7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
10 deletions
+15
-10
modules/gui/macosx/prefs_widgets.m
modules/gui/macosx/prefs_widgets.m
+9
-6
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+6
-4
No files found.
modules/gui/macosx/prefs_widgets.m
View file @
766e381d
...
...
@@ -1269,8 +1269,9 @@ o_textfield = [[[NSSecureTextField alloc] initWithFrame: s_rc] retain]; \
size_t
i_module_index
;
module_t
*
p_parser
,
**
p_list
;
p_list
=
module_list_get
(
NULL
);
for
(
i_module_index
=
0
;
p_list
[
i_module_index
];
i_module_index
++
)
{
size_t
count
;
p_list
=
module_list_get
(
&
count
);
for
(
i_module_index
=
0
;
i_module_index
<
count
;
i_module_index
++
)
{
p_parser
=
p_list
[
i_module_index
];
if
(
p_item
->
i_type
==
CONFIG_ITEM_MODULE
)
{
...
...
@@ -1311,8 +1312,9 @@ o_textfield = [[[NSSecureTextField alloc] initWithFrame: s_rc] retain]; \
/* build a list of available modules */
module_t
*
p_parser
,
**
p_list
;
p_list
=
module_list_get
(
NULL
);
for
(
size_t
i_index
=
0
;
p_list
[
i_index
];
i_index
++
)
{
size_t
count
;
p_list
=
module_list_get
(
&
count
);
for
(
size_t
i_index
=
0
;
i_index
<
count
;
i_index
++
)
{
p_parser
=
p_list
[
i_index
];
if
(
p_item
->
i_type
==
CONFIG_ITEM_MODULE
)
{
...
...
@@ -2010,8 +2012,9 @@ o_textfield = [[[NSSecureTextField alloc] initWithFrame: s_rc] retain]; \
o_modulearray
=
[[
NSMutableArray
alloc
]
initWithCapacity
:
10
];
/* build a list of available modules */
p_list
=
module_list_get
(
NULL
);
for
(
i_module_index
=
0
;
p_list
[
i_module_index
];
i_module_index
++
)
{
size_t
count
;
p_list
=
module_list_get
(
&
count
);
for
(
i_module_index
=
0
;
i_module_index
<
count
;
i_module_index
++
)
{
int
i
;
p_parser
=
p_list
[
i_module_index
];
...
...
modules/gui/macosx/simple_prefs.m
View file @
766e381d
...
...
@@ -370,7 +370,8 @@ static inline char * __config_GetLabel(vlc_object_t *p_this, const char *psz_nam
[
object
removeAllItems
];
p_item
=
config_FindConfig
(
VLC_OBJECT
(
p_intf
),
name
);
p_list
=
module_list_get
(
NULL
);
size_t
count
;
p_list
=
module_list_get
(
&
count
);
if
(
!
p_item
||!
p_list
)
{
if
(
p_list
)
module_list_free
(
p_list
);
msg_Err
(
p_intf
,
"serious problem, item or list not found"
);
...
...
@@ -378,7 +379,7 @@ static inline char * __config_GetLabel(vlc_object_t *p_this, const char *psz_nam
}
[
object
addItemWithTitle
:
_NS
(
"Default"
)];
for
(
size_t
i_index
=
0
;
p_list
[
i_index
]
;
i_index
++
)
{
for
(
size_t
i_index
=
0
;
i_index
<
count
;
i_index
++
)
{
p_parser
=
p_list
[
i_index
];
if
(
module_provides
(
p_parser
,
p_item
->
psz_type
))
{
[
object
addItemWithTitle
:
[
NSString
stringWithUTF8String
:
_
(
module_GetLongName
(
p_parser
))
?:
""
]];
...
...
@@ -738,8 +739,9 @@ static inline void save_module_list(intf_thread_t * p_intf, id object, const cha
p_item
=
config_FindConfig
(
VLC_OBJECT
(
p_intf
),
name
);
p_list
=
module_list_get
(
NULL
);
for
(
size_t
i_module_index
=
0
;
p_list
[
i_module_index
];
i_module_index
++
)
{
size_t
count
;
p_list
=
module_list_get
(
&
count
);
for
(
size_t
i_module_index
=
0
;
i_module_index
<
count
;
i_module_index
++
)
{
p_parser
=
p_list
[
i_module_index
];
if
(
p_item
->
i_type
==
CONFIG_ITEM_MODULE
&&
module_provides
(
p_parser
,
p_item
->
psz_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