mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 02:20:48 +00:00
Merged Trunk changes from rev 35219 to TestPlant branch.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@36953 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
343da32c8c
commit
4b27157a46
215 changed files with 13994 additions and 8840 deletions
|
@ -911,7 +911,7 @@ static NSImage *unexpandable = nil;
|
|||
/*
|
||||
* Drawing
|
||||
*/
|
||||
- (void) drawRow: (int)rowIndex clipRect: (NSRect)aRect
|
||||
- (void) drawRow: (NSInteger)rowIndex clipRect: (NSRect)aRect
|
||||
{
|
||||
int startingColumn;
|
||||
int endingColumn;
|
||||
|
@ -1039,11 +1039,11 @@ static NSImage *unexpandable = nil;
|
|||
|
||||
[cell drawWithFrame: drawingRect inView: self];
|
||||
if (i == _editedColumn && rowIndex == _editedRow)
|
||||
{
|
||||
{
|
||||
[cell _setInEditing: NO];
|
||||
[cell setShowsFirstResponder:NO];
|
||||
[cell setFocusRingType:NSFocusRingTypeDefault];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1541,8 +1541,8 @@ Also returns the child index relative to this parent. */
|
|||
[self _autoloadExpandedItems];
|
||||
}
|
||||
|
||||
- (void) editColumn: (int) columnIndex
|
||||
row: (int) rowIndex
|
||||
- (void) editColumn: (NSInteger) columnIndex
|
||||
row: (NSInteger) rowIndex
|
||||
withEvent: (NSEvent *) theEvent
|
||||
select: (BOOL) flag
|
||||
{
|
||||
|
@ -2258,12 +2258,12 @@ Also returns the child index relative to this parent. */
|
|||
{
|
||||
NSCell *cell = nil;
|
||||
if ([_delegate respondsToSelector:
|
||||
@selector(outlineView:dataCellForTableColumn:item:)])
|
||||
@selector(outlineView:dataCellForTableColumn:item:)])
|
||||
{
|
||||
id item = [self itemAtRow: rowIndex];
|
||||
cell = [_delegate outlineView: self
|
||||
dataCellForTableColumn: tb
|
||||
item: item];
|
||||
item: item];
|
||||
}
|
||||
if (cell == nil)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue