فهرست منبع

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