mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
More int to NSInteger updates
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@40468 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d539e046e6
commit
6ab64937bb
2 changed files with 4 additions and 4 deletions
|
@ -76,9 +76,9 @@
|
|||
|
||||
@interface NSTableView (Private)
|
||||
- (CGFloat *)_columnOrigins;
|
||||
- (void) _willDisplayCell: (NSCell*)cell forTableColumn: (NSTableColumn *)tb row: (int)index;
|
||||
- (void) _willDisplayCell: (NSCell*)cell forTableColumn: (NSTableColumn *)tb row: (NSInteger)index;
|
||||
// TESTPLANT-MAL-2016: Keeping for tableview grouped row support AKA Cocoa...
|
||||
- (NSCell *) _dataCellForTableColumn: (NSTableColumn *)tb row: (int) rowIndex;
|
||||
- (NSCell *) _dataCellForTableColumn: (NSTableColumn *)tb row: (NSInteger) rowIndex;
|
||||
- (BOOL)_isGroupRow: (NSInteger)rowIndex;
|
||||
@end
|
||||
|
||||
|
|
|
@ -137,7 +137,7 @@ static NSImage *unexpandable = nil;
|
|||
// Testplant-MAL-2015-07-01: _dataCellForTableColumn incldued due to NSTableView
|
||||
// for group row processing...
|
||||
- (NSCell *) _dataCellForTableColumn: (NSTableColumn *)tb
|
||||
row: (int) rowIndex;
|
||||
row: (NSInteger) rowIndex;
|
||||
@end
|
||||
|
||||
@interface NSOutlineView (Private)
|
||||
|
@ -2263,7 +2263,7 @@ Also returns the child index relative to this parent. */
|
|||
// Testplant-MAL-2015-07-01: Testplant branch code used due to NSTableView
|
||||
// for group row processing...
|
||||
- (NSCell *) _dataCellForTableColumn: (NSTableColumn *)tb
|
||||
row: (int) rowIndex
|
||||
row: (NSInteger) rowIndex
|
||||
{
|
||||
NSCell *cell = nil;
|
||||
if ([_delegate respondsToSelector:
|
||||
|
|
Loading…
Reference in a new issue