summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXSubwindows.c
diff options
context:
space:
mode:
authorKevin Walzer <kw@codebykevin.com>2014-07-25 17:04:32 (GMT)
committerKevin Walzer <kw@codebykevin.com>2014-07-25 17:04:32 (GMT)
commit28f4db0b376bc66dc5d13c9f9a4b33d7172c4acd (patch)
treea56d353223531ad17562e901c4fc7a5163124835 /macosx/tkMacOSXSubwindows.c
parent9cc24173c484ad18f08b566a9a0182614ffd97ef (diff)
downloadtk-28f4db0b376bc66dc5d13c9f9a4b33d7172c4acd.zip
tk-28f4db0b376bc66dc5d13c9f9a4b33d7172c4acd.tar.gz
tk-28f4db0b376bc66dc5d13c9f9a4b33d7172c4acd.tar.bz2
Add copyright notice to Marc Culler for extensive patch to alpha rendering on Mac/Cocoa; remove private API calls to comply with platform requirements.
Diffstat (limited to 'macosx/tkMacOSXSubwindows.c')
-rw-r--r--macosx/tkMacOSXSubwindows.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/macosx/tkMacOSXSubwindows.c b/macosx/tkMacOSXSubwindows.c
index 29bc4a3..3dfd308 100644
--- a/macosx/tkMacOSXSubwindows.c
+++ b/macosx/tkMacOSXSubwindows.c
@@ -743,11 +743,12 @@ TkMacOSXUpdateClipRgn(
NSWindow *w = TkMacOSXDrawableWindow(winPtr->window);
if (w) {
- bounds = NSRectToCGRect([w _growBoxRect]);
- bounds.origin.y = [w contentRectForFrameRect:
- [w frame]].size.height - bounds.size.height -
- bounds.origin.y;
- ChkErr(TkMacOSHIShapeDifferenceWithRect, rgn, &bounds);
+ // This call to private API not needed on systems >= 10.7
+ // bounds = NSRectToCGRect([w _growBoxRect]);
+ // bounds.origin.y = [w contentRectForFrameRect:
+ // [w frame]].size.height - bounds.size.height -
+ // bounds.origin.y;
+ // ChkErr(TkMacOSHIShapeDifferenceWithRect, rgn, &bounds);
}
}
macWin->aboveVisRgn = HIShapeCreateCopy(rgn);