From: Pierre d'Herbemont Date: Mon, 5 Mar 2007 14:04:41 +0000 (+0000) Subject: Mac OS X gui: Fix #1090 (add items to the playlist in the finder's order) X-Git-Tag: 0.9.0-test0~8245 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0832b7e2168d2b76acba61ce870eaced4cd1396a;p=vlc Mac OS X gui: Fix #1090 (add items to the playlist in the finder's order) --- diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m index f9176885b0..c9027e92bb 100644 --- a/modules/gui/macosx/playlist.m +++ b/modules/gui/macosx/playlist.m @@ -1598,10 +1598,7 @@ NSLog( @"expandable" ); playlist_item_t *p_node = [item pointerValue]; NSArray *o_array = [NSArray array]; - NSArray *o_values = [[o_pasteboard propertyListForType: - NSFilenamesPboardType] - sortedArrayUsingSelector: - @selector(caseInsensitiveCompare:)]; + NSArray *o_values = [o_pasteboard propertyListForType: NSFilenamesPboardType]; for( i = 0; i < (int)[o_values count]; i++) {