mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-02 18:41:00 +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
828e5ce1fd
commit
bd3383cc13
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>
|
2000-11-13 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Headers/gnustep/gui/NSPrintInfo.h: Added NSCopying protocol.
|
* Headers/gnustep/gui/NSPrintInfo.h: Added NSCopying protocol.
|
||||||
|
|
|
@ -429,7 +429,8 @@ static Class rulerViewClass = nil;
|
||||||
|
|
||||||
NSDebugLog (@"reflectScrolledClipView:");
|
NSDebugLog (@"reflectScrolledClipView:");
|
||||||
|
|
||||||
clipViewBounds = [_contentView bounds];
|
if (_contentView)
|
||||||
|
clipViewBounds = [_contentView bounds];
|
||||||
if ((documentView = [_contentView documentView]))
|
if ((documentView = [_contentView documentView]))
|
||||||
documentFrame = [documentView frame];
|
documentFrame = [documentView frame];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue