Commit de4216e3 authored by Felix Paul Kühne's avatar Felix Paul Kühne

Use NSInteger since we got it now

parent a4c60962
...@@ -1146,12 +1146,12 @@ static VLCSimplePrefs *_o_sharedInstance = nil; ...@@ -1146,12 +1146,12 @@ static VLCSimplePrefs *_o_sharedInstance = nil;
[self showSettingsForCategory: o_hotkeys_view]; [self showSettingsForCategory: o_hotkeys_view];
} }
- (int)numberOfRowsInTableView:(NSTableView *)aTableView - (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView
{ {
return [o_hotkeySettings count]; 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"] ) if( [[aTableColumn identifier] isEqualToString: @"action"] )
return [o_hotkeyDescriptions objectAtIndex: rowIndex]; return [o_hotkeyDescriptions objectAtIndex: rowIndex];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment