summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorKevin Walzer <kw@codebykevin.com>2015-03-21 03:22:06 (GMT)
committerKevin Walzer <kw@codebykevin.com>2015-03-21 03:22:06 (GMT)
commit2bbcc7c760a073c96be92970e59338a12100fee1 (patch)
treeeba7c34d41004685c5f35f2f9fb25e82268dcd1e /macosx
parent22219a50183006a164959551bee12bf4198ceda0 (diff)
downloadtk-2bbcc7c760a073c96be92970e59338a12100fee1.zip
tk-2bbcc7c760a073c96be92970e59338a12100fee1.tar.gz
tk-2bbcc7c760a073c96be92970e59338a12100fee1.tar.bz2
Final cleanup of zombie windows in Cocoa
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tkMacOSXWm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/macosx/tkMacOSXWm.c b/macosx/tkMacOSXWm.c
index 5cec236..82de883 100644
--- a/macosx/tkMacOSXWm.c
+++ b/macosx/tkMacOSXWm.c
@@ -807,6 +807,7 @@ TkWmDeadWindow(
NSWindow *window = wmPtr->window;
if (window && !Tk_IsEmbedded(winPtr) ) {
+ NSAutoreleasePool *pool = [NSAutoreleasePool new];
NSWindow *parent = [window parentWindow];
if (parent) {
[parent removeChildWindow:window];
@@ -826,6 +827,7 @@ TkWmDeadWindow(
[front makeKeyAndOrderFront:NSApp];
}
}
+ [pool drain];
}
ckfree(wmPtr);
winPtr->wmInfoPtr = NULL;