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
490316dd
Commit
490316dd
authored
Jan 29, 2003
by
Jon Lech Johansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./modules/gui/macosx/controls.m: fixed bug in my previous commit.
parent
88f691d0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+4
-7
No files found.
modules/gui/macosx/controls.m
View file @
490316dd
...
...
@@ -2,7 +2,7 @@
* controls.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: controls.m,v 1.1
7 2003/01/29 11:34:11
jlj Exp $
* $Id: controls.m,v 1.1
8 2003/01/29 11:41:48
jlj Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -100,17 +100,14 @@
}
else
{
vlc_bool_t
b_empty
;
b_empty
=
playlist_IsEmpty
(
p_playlist
);
vlc_object_release
(
p_playlist
);
if
(
!
b_empty
)
if
(
!
playlist_IsEmpty
(
p_playlist
)
)
{
playlist_Play
(
p_playlist
);
vlc_object_release
(
p_playlist
);
}
else
{
vlc_object_release
(
p_playlist
);
[
o_open
openFile
:
nil
];
}
}
...
...
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