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
5f9c8363
Commit
5f9c8363
authored
May 03, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VLCKit: remove - (id)initWithArray:(NSArray *)array;
parent
0ba86c34
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
17 deletions
+0
-17
projects/macosx/framework/Headers/Public/VLCMediaList.h
projects/macosx/framework/Headers/Public/VLCMediaList.h
+0
-6
projects/macosx/framework/Sources/VLCMediaList.m
projects/macosx/framework/Sources/VLCMediaList.m
+0
-11
No files found.
projects/macosx/framework/Headers/Public/VLCMediaList.h
View file @
5f9c8363
...
...
@@ -58,12 +58,6 @@ extern NSString * VLCMediaListItemDeleted;
NSMutableArray
*
cachedMedia
;
//< Private copy of media objects.
}
/**
* Init a MediaList with the media contained in array.
* \array an array of VLCMedia.
*/
-
(
id
)
initWithArray
:(
NSArray
*
)
array
;
/* Operations */
/**
* TODO: Documentation - [VLCMediaList lock]
...
...
projects/macosx/framework/Sources/VLCMediaList.m
View file @
5f9c8363
...
...
@@ -86,17 +86,6 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
return
self
;
}
-
(
id
)
initWithArray
:(
NSArray
*
)
array
{
self
=
[
self
init
];
if
(
!
self
)
return
nil
;
for
(
VLCMedia
*
media
in
array
)
[
self
addMedia
:
media
];
return
self
;
}
-
(
void
)
dealloc
{
libvlc_event_manager_t
*
em
=
libvlc_media_list_event_manager
(
p_mlist
);
...
...
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