mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 00:00:47 +00:00
Access superclass ivars directly.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4786 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0d1b3b95af
commit
178e4956bd
15 changed files with 87 additions and 73 deletions
|
@ -613,12 +613,12 @@ object with the NSTableView as the text delegate. */
|
|||
|
||||
- (void)scrollRowToVisible:(int)rowIndex
|
||||
{
|
||||
[(NSClipView *)[self superview] scrollToPoint:NSZeroPoint];
|
||||
[(NSClipView *)super_view scrollToPoint:NSZeroPoint];
|
||||
}
|
||||
|
||||
- (void)scrollColumnToVisible:(int)columnIndex
|
||||
{
|
||||
[(NSClipView *)[self superview] scrollToPoint:NSZeroPoint];
|
||||
[(NSClipView *)super_view scrollToPoint:NSZeroPoint];
|
||||
}
|
||||
|
||||
- (BOOL)textShouldBeginEditing:(NSText *)textObject
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue