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
ccf834a5
Commit
ccf834a5
authored
May 14, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* more compilation fixes
parent
88528f4c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+2
-2
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+6
-2
No files found.
modules/gui/macosx/intf.m
View file @
ccf834a5
...
...
@@ -975,7 +975,7 @@ static VLCMain *_o_sharedMainInstance = nil;
/* chapters & titles */
//b_chapters = p_intf->p_sys->p_input->stream.i_area_nb > 1;
vlc_object_release
(
p_input
);
vlc_object_release
(
p_in
tf
->
p_sys
->
p_in
put
);
}
[
o_btn_stop
setEnabled
:
b_input
];
...
...
@@ -1022,7 +1022,7 @@ static VLCMain *_o_sharedMainInstance = nil;
p_intf
->
p_sys
->
b_intf_show
=
VLC_FALSE
;
}
if
(
p_in
put
&&
!
p_input
->
b_die
)
if
(
p_in
tf
->
p_sys
->
p_input
&&
!
p_intf
->
p_sys
->
p_input
->
b_die
)
{
vlc_value_t
val
;
...
...
modules/gui/macosx/playlist.m
View file @
ccf834a5
...
...
@@ -741,7 +741,9 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
{
o_real_filename
=
o_filename
;
}
playlist_Export
(
p_playlist
,
[
o_real_filename
fileSystemRepresentation
],
"export-xspf"
);
playlist_Export
(
p_playlist
,
[
o_real_filename
fileSystemRepresentation
],
p_playlist
->
p_local_category
,
"export-xspf"
);
}
else
{
...
...
@@ -759,7 +761,9 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
{
o_real_filename
=
o_filename
;
}
playlist_Export
(
p_playlist
,
[
o_real_filename
fileSystemRepresentation
],
p_playlist
->
p_local_category
,
"export-m3u"
);
playlist_Export
(
p_playlist
,
[
o_real_filename
fileSystemRepresentation
],
p_playlist
->
p_local_category
,
"export-m3u"
);
}
}
vlc_object_release
(
p_playlist
);
...
...
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