[vlc-devel] commit: macosx: fixed compilation warning ( Felix Paul Kühne )

git version control git at videolan.org
Fri Jun 26 13:04:28 CEST 2009


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Fri Jun 26 12:14:39 2009 +0200| [eb5d3ab1ed0d097e8e46c5d60dceadcbeed276ed] | committer: Felix Paul Kühne 

macosx: fixed compilation warning

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=eb5d3ab1ed0d097e8e46c5d60dceadcbeed276ed
---

 modules/gui/macosx/playlistinfo.h |    2 +-
 modules/gui/macosx/playlistinfo.m |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/macosx/playlistinfo.h b/modules/gui/macosx/playlistinfo.h
index cea5c0c..c3259a4 100644
--- a/modules/gui/macosx/playlistinfo.h
+++ b/modules/gui/macosx/playlistinfo.h
@@ -127,7 +127,7 @@
 }
 
 - (int)numberOfChildren;
-- (VLCInfoTreeItem *)childAtIndex:(int)i_index;
+- (VLCInfoTreeItem *)childAtIndex:(NSUInteger)i_index;
 - (NSString *)name;
 - (NSString *)value;
 - (void)refresh;
diff --git a/modules/gui/macosx/playlistinfo.m b/modules/gui/macosx/playlistinfo.m
index 623a6a5..dc316dc 100644
--- a/modules/gui/macosx/playlistinfo.m
+++ b/modules/gui/macosx/playlistinfo.m
@@ -590,7 +590,7 @@ error:
     o_children = nil;
 }
 
-- (VLCInfoTreeItem *)childAtIndex:(int)i_index {
+- (VLCInfoTreeItem *)childAtIndex:(NSUInteger)i_index {
     return [[self children] objectAtIndex:i_index];
 }
 




More information about the vlc-devel mailing list