mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 22:10:36 +00:00
Updated for change in NSView ivars
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5719 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0a6a692734
commit
475b802dee
16 changed files with 169 additions and 164 deletions
|
@ -236,7 +236,7 @@
|
|||
|
||||
- (NSRect)contentRect
|
||||
{
|
||||
NSRect cRect = frame;
|
||||
NSRect cRect = _frame;
|
||||
|
||||
cRect.origin.x = 0;
|
||||
cRect.origin.y = 0;
|
||||
|
@ -268,7 +268,7 @@
|
|||
NSRect previousRect;
|
||||
int previousState = 0;
|
||||
|
||||
rect = NSIntersectionRect(bounds, rect);
|
||||
rect = NSIntersectionRect(_bounds, rect);
|
||||
|
||||
DPSgsave(ctxt);
|
||||
|
||||
|
@ -542,6 +542,11 @@
|
|||
DPSgrestore(ctxt);
|
||||
}
|
||||
|
||||
- (BOOL) isOpaque
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
// Event handling.
|
||||
|
||||
- (NSTabViewItem *)tabViewItemAtPoint:(NSPoint)point
|
||||
|
@ -572,7 +577,7 @@
|
|||
|
||||
// [self setNeedsDisplay:YES];
|
||||
|
||||
// [window update];
|
||||
// [_window update];
|
||||
|
||||
return [super hitTest:aPoint];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue