]> git.sesse.net Git - vlc/commitdiff
macosx: fixed compilation warning
authorFelix Paul Kühne <fkuehne@videolan.org>
Fri, 26 Jun 2009 10:14:39 +0000 (12:14 +0200)
committerFelix Paul Kühne <fkuehne@videolan.org>
Fri, 26 Jun 2009 11:04:21 +0000 (13:04 +0200)
modules/gui/macosx/playlistinfo.h
modules/gui/macosx/playlistinfo.m

index cea5c0c34113fbdf4d908e8d58efd05f7a3e9fb0..c3259a4e387c9a5aa9819e7a029ac86e83a3c92d 100644 (file)
 }
 
 - (int)numberOfChildren;
-- (VLCInfoTreeItem *)childAtIndex:(int)i_index;
+- (VLCInfoTreeItem *)childAtIndex:(NSUInteger)i_index;
 - (NSString *)name;
 - (NSString *)value;
 - (void)refresh;
index 623a6a54f8c5bd85b4ce6a86f628f64b64426158..dc316dcb31fded7b85182607b7a7131494cbda90 100644 (file)
@@ -590,7 +590,7 @@ error:
     o_children = nil;
 }
 
-- (VLCInfoTreeItem *)childAtIndex:(int)i_index {
+- (VLCInfoTreeItem *)childAtIndex:(NSUInteger)i_index {
     return [[self children] objectAtIndex:i_index];
 }