[vlc-devel] commit: Use NSInteger since we got it now ( Felix Paul Kühne )
git version control
git at videolan.org
Sun Apr 27 21:30:32 CEST 2008
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Apr 27 21:29:30 2008 +0200| [de4216e304f2d442ad44d4b9314722581e6e7ff4]
Use NSInteger since we got it now
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=de4216e304f2d442ad44d4b9314722581e6e7ff4
---
modules/gui/macosx/simple_prefs.m | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/macosx/simple_prefs.m b/modules/gui/macosx/simple_prefs.m
index 720308e..2f8e51c 100644
--- a/modules/gui/macosx/simple_prefs.m
+++ b/modules/gui/macosx/simple_prefs.m
@@ -1146,12 +1146,12 @@ static VLCSimplePrefs *_o_sharedInstance = nil;
[self showSettingsForCategory: o_hotkeys_view];
}
-- (int)numberOfRowsInTableView:(NSTableView *)aTableView
+- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView
{
return [o_hotkeySettings count];
}
-- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
+- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex
{
if( [[aTableColumn identifier] isEqualToString: @"action"] )
return [o_hotkeyDescriptions objectAtIndex: rowIndex];
More information about the vlc-devel
mailing list