mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 17:20:38 +00:00
Update docs
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@13335 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1f8e8a5814
commit
a7bf31db3f
40 changed files with 3582 additions and 4300 deletions
|
@ -485,7 +485,7 @@ static NSMutableDictionary *units = nil;
|
|||
}
|
||||
}
|
||||
|
||||
- (void) drawHashMarksAndLabelsInRect: (NSRect)drawRect
|
||||
- (void) drawHashMarksAndLabelsInRect: (NSRect)aRect
|
||||
{
|
||||
NSGraphicsContext *ctxt = GSCurrentContext();
|
||||
NSFont *font;
|
||||
|
@ -526,7 +526,7 @@ static NSMutableDictionary *units = nil;
|
|||
{
|
||||
baseLineRect.origin.y = baselineLocation;
|
||||
baseLineRect.size.height = 1;
|
||||
baseLineRect = NSIntersectionRect(baseLineRect, drawRect);
|
||||
baseLineRect = NSIntersectionRect(baseLineRect, aRect);
|
||||
firstVisibleLocation = NSMinX(baseLineRect);
|
||||
visibleLength = NSWidth(baseLineRect);
|
||||
}
|
||||
|
@ -534,7 +534,7 @@ static NSMutableDictionary *units = nil;
|
|||
{
|
||||
baseLineRect.origin.x = baselineLocation;
|
||||
baseLineRect.size.width = 1;
|
||||
baseLineRect = NSIntersectionRect(baseLineRect, drawRect);
|
||||
baseLineRect = NSIntersectionRect(baseLineRect, aRect);
|
||||
firstVisibleLocation = NSMinY(baseLineRect);
|
||||
visibleLength = NSHeight(baseLineRect);
|
||||
}
|
||||
|
@ -625,10 +625,10 @@ static NSMutableDictionary *units = nil;
|
|||
_cacheIsValid = NO;
|
||||
}
|
||||
|
||||
- (void) setScrollView: (NSScrollView *)sView
|
||||
- (void) setScrollView: (NSScrollView *)scrollView
|
||||
{
|
||||
/* We do NOT retain the scrollView; the scrollView is retaining us. */
|
||||
_scrollView = sView;
|
||||
_scrollView = scrollView;
|
||||
}
|
||||
|
||||
- (NSScrollView *) scrollView
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue