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
11947665
Commit
11947665
authored
Oct 17, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the shoutcast TV listings SD menu item in the Mac OS X GUI. To be backported
parent
e366e405
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
16 deletions
+20
-16
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+20
-16
No files found.
modules/gui/macosx/playlist.m
View file @
11947665
...
...
@@ -364,40 +364,44 @@ NSLog( @"expandable" );
for
(
i_index
=
0
;
i_index
<
p_list
->
i_count
;
i_index
++
)
{
NSMenuItem
*
o_lmi
;
module_t
*
p_parser
=
(
module_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
vlc_bool_t
b_enabled
;
char
*
objectname
;
NSMenuItem
*
o_lmi
;
module_t
*
p_parser
=
(
module_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
if
(
!
strcmp
(
p_parser
->
psz_capability
,
"services_discovery"
)
)
{
/* create the menu entries used in the playlist menu */
/* Check for submodules */
int
i
=
-
1
;
while
(
p_parser
->
pp_shortcuts
[
++
i
]
!=
NULL
);
i
--
;
/* Check whether to enable these menuitems */
objectname
=
i
>=
0
?
p_parser
->
pp_shortcuts
[
i
]
:
p_parser
->
psz_object_name
;
b_enabled
=
playlist_IsServicesDiscoveryLoaded
(
p_playlist
,
objectname
);
/* Create the menu entries used in the playlist menu */
o_lmi
=
[[
o_mi_services
submenu
]
addItemWithTitle
:
[
NSString
stringWithUTF8String
:
p_parser
->
psz_longname
?
p_parser
->
psz_longname
:
(
p_parser
->
psz_shortname
?
p_parser
->
psz_shortname
:
p_parser
->
psz_object_
name
)]
object
name
)]
action:
@selector
(
servicesChange
:)
keyEquivalent:
@""
];
[
o_lmi
setTarget
:
self
];
[
o_lmi
setRepresentedObject
:
[
NSString
stringWithCString
:
p_parser
->
psz_object_name
]];
if
(
playlist_IsServicesDiscoveryLoaded
(
p_playlist
,
p_parser
->
psz_object_name
)
)
[
o_lmi
setState
:
NSOnState
];
[
o_lmi
setRepresentedObject
:
[
NSString
stringWithCString
:
objectname
]];
if
(
b_enabled
)
[
o_lmi
setState
:
NSOnState
];
/*
c
reate the menu entries for the main menu */
/*
C
reate the menu entries for the main menu */
o_lmi
=
[[
o_mm_mi_services
submenu
]
addItemWithTitle
:
[
NSString
stringWithUTF8String
:
p_parser
->
psz_longname
?
p_parser
->
psz_longname
:
(
p_parser
->
psz_shortname
?
p_parser
->
psz_shortname
:
p_parser
->
psz_object_
name
)]
object
name
)]
action:
@selector
(
servicesChange
:)
keyEquivalent:
@""
];
[
o_lmi
setTarget
:
self
];
[
o_lmi
setRepresentedObject
:
[
NSString
stringWithCString
:
p_parser
->
psz_object_name
]];
if
(
playlist_IsServicesDiscoveryLoaded
(
p_playlist
,
p_parser
->
psz_object_name
)
)
[
o_lmi
setState
:
NSOnState
];
[
o_lmi
setRepresentedObject
:
[
NSString
stringWithCString
:
objectname
]];
if
(
b_enabled
)
[
o_lmi
setState
:
NSOnState
];
}
}
vlc_list_release
(
p_list
);
...
...
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