mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 02:10:48 +00:00
Fix NSOutlineView to conform to fixed NSTableView
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@37446 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
813b317275
commit
daf7281a96
1 changed files with 5 additions and 6 deletions
|
@ -110,7 +110,6 @@ static NSImage *unexpandable = nil;
|
|||
- (void) _setObjectValue: (id)value
|
||||
forTableColumn: (NSTableColumn *)tb
|
||||
row: (int) index;
|
||||
- (int) _numRows;
|
||||
@end
|
||||
|
||||
// These methods are private...
|
||||
|
@ -1710,6 +1709,11 @@ Also returns the child index relative to this parent. */
|
|||
return;
|
||||
}
|
||||
|
||||
- (NSInteger) numberOfRows
|
||||
{
|
||||
return [_items count];
|
||||
}
|
||||
|
||||
@end /* implementation of NSOutlineView */
|
||||
|
||||
@implementation NSOutlineView (NotificationRequestMethods)
|
||||
|
@ -1914,11 +1918,6 @@ Also returns the child index relative to this parent. */
|
|||
}
|
||||
}
|
||||
|
||||
- (int) _numRows
|
||||
{
|
||||
return [_items count];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation NSOutlineView (TableViewInternalPrivate)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue