Skip to content
Snippets Groups Projects
Commit c829e34b authored by Felix Paul Kühne's avatar Felix Paul Kühne
Browse files

macosx/playlist controller: cosmetics

self is implicitly retained by the block. Mention it to indicate that this the intended behavior
parent 0137809a
No related branches found
No related tags found
No related merge requests found
......@@ -403,7 +403,7 @@ static const struct vlc_playlist_callbacks playlist_callbacks = {
__block vlc_playlist_item_t **items = calloc(indexes.count, sizeof(vlc_playlist_item_t *));
__block NSUInteger pos = 0;
[indexes enumerateIndexesUsingBlock:^(NSUInteger idx, BOOL * _Nonnull stop) {
VLCPlaylistItem *item = [_playlistModel playlistItemAtIndex:idx];
VLCPlaylistItem *item = [self->_playlistModel playlistItemAtIndex:idx];
items[pos++] = item.playlistItem;
}];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment