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
4e8c2bbf
Commit
4e8c2bbf
authored
May 26, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OSX: simplification.
parent
a92d98f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
modules/gui/macosx/playlistinfo.m
modules/gui/macosx/playlistinfo.m
+2
-6
No files found.
modules/gui/macosx/playlistinfo.m
View file @
4e8c2bbf
...
@@ -252,9 +252,7 @@ static VLCInfo *_o_sharedInstance = nil;
...
@@ -252,9 +252,7 @@ static VLCInfo *_o_sharedInstance = nil;
if
(
!
input_item_IsPreparsed
(
p_item
)
)
if
(
!
input_item_IsPreparsed
(
p_item
)
)
{
{
playlist_t
*
p_playlist
=
pl_Hold
(
VLCIntf
);
playlist_t
*
p_playlist
=
pl_Hold
(
VLCIntf
);
PL_LOCK
;
playlist_PreparseEnqueue
(
p_playlist
,
p_item
,
pl_Unlocked
);
playlist_PreparseEnqueue
(
p_playlist
,
p_item
,
pl_Locked
);
PL_UNLOCK
;
pl_Release
(
VLCIntf
);
pl_Release
(
VLCIntf
);
}
}
...
@@ -368,7 +366,6 @@ static VLCInfo *_o_sharedInstance = nil;
...
@@ -368,7 +366,6 @@ static VLCInfo *_o_sharedInstance = nil;
-
(
IBAction
)
saveMetaData
:(
id
)
sender
-
(
IBAction
)
saveMetaData
:(
id
)
sender
{
{
playlist_t
*
p_playlist
=
pl_Hold
(
VLCIntf
);
playlist_t
*
p_playlist
=
pl_Hold
(
VLCIntf
);
vlc_value_t
val
;
if
(
!
p_item
)
goto
error
;
if
(
!
p_item
)
goto
error
;
...
@@ -414,8 +411,7 @@ static VLCInfo *_o_sharedInstance = nil;
...
@@ -414,8 +411,7 @@ static VLCInfo *_o_sharedInstance = nil;
module_unneed
(
p_playlist
,
p_mod
);
module_unneed
(
p_playlist
,
p_mod
);
PL_UNLOCK
;
PL_UNLOCK
;
val
.
b_bool
=
true
;
var_SetBool
(
p_playlist
,
"intf-change"
,
true
);
var_Set
(
p_playlist
,
"intf-change"
,
val
);
[
self
updatePanelWithItem
:
p_item
];
[
self
updatePanelWithItem
:
p_item
];
pl_Release
(
VLCIntf
);
pl_Release
(
VLCIntf
);
...
...
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