From b8148a855da7c21dfa754aaebf3a8a8fc4b812ec Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Sun, 1 Mar 2026 02:40:16 +0800 Subject: [PATCH] macosx: Remove incorrect whitespaces in audio group data source Signed-off-by: Claudio Cambra --- .../audio-library/VLCLibraryAudioGroupDataSource.m | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/gui/macosx/library/audio-library/VLCLibraryAudioGroupDataSource.m b/modules/gui/macosx/library/audio-library/VLCLibraryAudioGroupDataSource.m index a09f00707d..b6af4ef4aa 100644 --- a/modules/gui/macosx/library/audio-library/VLCLibraryAudioGroupDataSource.m +++ b/modules/gui/macosx/library/audio-library/VLCLibraryAudioGroupDataSource.m @@ -422,14 +422,14 @@ viewForSupplementaryElementOfKind:(NSCollectionViewSupplementaryElementKind)kind - (NSArray *)representedItemsAtIndexPaths:(NSSet *const)indexPaths forCollectionView:(NSCollectionView *)collectionView { - NSMutableArray * const representedItems = + NSMutableArray * const representedItems = [NSMutableArray arrayWithCapacity:indexPaths.count]; - + for (NSIndexPath * const indexPath in indexPaths) { - const id libraryItem = + const id libraryItem = [self libraryItemAtIndexPath:indexPath forCollectionView:collectionView]; - VLCLibraryRepresentedItem * const representedItem = - [[VLCLibraryRepresentedItem alloc] initWithItem:libraryItem + VLCLibraryRepresentedItem * const representedItem = + [[VLCLibraryRepresentedItem alloc] initWithItem:libraryItem parentType:self.currentParentType]; [representedItems addObject:representedItem]; }