git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8116 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2000-11-15 05:02:06 +00:00
parent 5f2962482e
commit eee86903f2
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Nov 14 23:45:56 2000 Adam Fedor <fedor@yogi.doc.com>
* Source/NSScrollView.m (reflectScrolledClipView:): Check for
contentView before getting frame.
2000-11-13 Fred Kiefer <FredKiefer@gmx.de>
* Headers/gnustep/gui/NSPrintInfo.h: Added NSCopying protocol.

View file

@ -429,7 +429,8 @@ static Class rulerViewClass = nil;
NSDebugLog (@"reflectScrolledClipView:");
clipViewBounds = [_contentView bounds];
if (_contentView)
clipViewBounds = [_contentView bounds];
if ((documentView = [_contentView documentView]))
documentFrame = [documentView frame];