mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-29 23:30:37 +00:00
Tidyup
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3993 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3f76d4ce1b
commit
8f47f76dc6
3 changed files with 12 additions and 5 deletions
|
@ -1,4 +1,11 @@
|
|||
Sat Mar 27 05:5800 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
Tue Mar 30 05:26:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Headers/AppKit/NSScroller.h: Modified ([-setContentView:]) and
|
||||
([-contentView]) to use NSClipView rather than NSView.
|
||||
* NSScroller.m: Modified ([-setContentView:]) and ([-contentView]) to
|
||||
use NSClipView rather than NSView.
|
||||
|
||||
Sat Mar 27 05:58:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Source/NSBrowser.m: Override target, setTarget, action, setAction
|
||||
* Headers/AppKit/NSBrowser.h: Add _action and _target ivars.
|
||||
|
|
|
@ -77,8 +77,8 @@
|
|||
- (NSBorderType)borderType;
|
||||
|
||||
/* Managing the scrolled views */
|
||||
- (void)setContentView:(NSView*)aView;
|
||||
- (NSView*)contentView;
|
||||
- (void)setContentView:(NSClipView*)aView;
|
||||
- (NSClipView*)contentView;
|
||||
- (void)setDocumentView:(NSView*)aView;
|
||||
- (id)documentView;
|
||||
- (void)setDocumentCursor:(NSCursor*)aCursor;
|
||||
|
|
|
@ -181,7 +181,7 @@ static Class rulerViewClass = nil;
|
|||
[super dealloc];
|
||||
}
|
||||
|
||||
- (void) setContentView: (NSView*)aView
|
||||
- (void) setContentView: (NSClipView*)aView
|
||||
{
|
||||
ASSIGN((id)_contentView, (id)aView);
|
||||
[self addSubview: _contentView];
|
||||
|
@ -632,7 +632,7 @@ static Class rulerViewClass = nil;
|
|||
return [_contentView bounds].size;
|
||||
}
|
||||
|
||||
- (NSView*) contentView
|
||||
- (NSClipView*) contentView
|
||||
{
|
||||
return _contentView;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue