mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 06:28:54 +00:00
Check id
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8116 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5f2962482e
commit
eee86903f2
2 changed files with 7 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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];
|
||||
|
||||
|
|
Loading…
Reference in a new issue