mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 05:32:11 +00:00
match delegates to actual Apple signature
This commit is contained in:
parent
0c2157deaf
commit
f23139ddfb
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (C) 2013 Free Software Foundation, Inc.
|
||||
Copyright (C) 2013-2021 Free Software Foundation, Inc.
|
||||
|
||||
Author: German A. Arias <german@xelalug.org>
|
||||
Date: 2013
|
||||
|
@ -499,14 +499,14 @@ static GSAutocompleteWindow *gsWindow = nil;
|
|||
}
|
||||
|
||||
// Delegate
|
||||
- (int) numberOfRowsInTableView: (NSTableView *)aTableView
|
||||
- (NSInteger) numberOfRowsInTableView: (NSTableView *)aTableView
|
||||
{
|
||||
return [_words count];
|
||||
}
|
||||
|
||||
- (id) tableView: (NSTableView *)aTableView
|
||||
objectValueForTableColumn: (NSTableColumn *)aTableColumn
|
||||
row: (int)rowIndex
|
||||
row: (NSInteger)rowIndex
|
||||
{
|
||||
return [[_words objectAtIndex: rowIndex] description];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue