소스 검색

MacOSX/Framework/VLCMediaListAspect.m: Use the cachedMedia array when giving back the aspect items. That really boost performances by the way.

Pierre d'Herbemont 17 년 전
부모
커밋
18d766fe6d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Sources/VLCMediaListAspect.m

+ 2 - 2
Sources/VLCMediaListAspect.m

@@ -42,11 +42,11 @@
 /* For the @"media" key */
 - (int) countOfMedia
 {
-    return [self count];
+    return [cachedMedia count];
 }
 - (id) objectInMediaAtIndex:(int)i
 {
-    return [self mediaAtIndex:i];
+    return [cachedMedia objectAtIndex:i];
 }
 @end