* Palettes/3Containers/GormTableViewEditor.m: Change documentRect to

documentVisibleRect.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23974 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Matt Rice 2006-10-27 21:38:14 +00:00
parent 1bc8528853
commit 382ab03052
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2006-10-27 Matt Rice <ratmice@yahoo.com>
* Palettes/3Containers/GormTableViewEditor.m: Change documentRect to
documentVisibleRect.
2006-10-23 01:23-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* English.lproj/GormHelpInspector.gorm: Change resize properties.

View file

@ -101,12 +101,12 @@ static NSText *_textObject;
return NO;
}
- (NSRect) documentRect
- (NSRect) documentVisibleRect
{
NSRect visRect = _bounds;
if ([_super_view respondsToSelector:@selector(documentRect)])
if ([_super_view respondsToSelector:@selector(documentVisibleRect)])
{
visRect = [(NSClipView *)_super_view documentRect];
visRect = [(NSClipView *)_super_view documentVisibleRect];
}
return visRect;
}