summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2015-02-18 06:20:57 +0000
committerManolo Gouy <Manolo>2015-02-18 06:20:57 +0000
commit93372a77c1d0d5affd3715e4fbbbfd86e85831fe (patch)
treeec8f5683196ee6dde62ccbc131ffc9d64b89ea40 /src
parentfd7cfbb6f0d79f057788ecba8c648999419605e7 (diff)
Mac OS: Fixed issue where the system object supporting a window created before the event loop started could not be
deallocated. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10586 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_cocoa.mm2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Fl_cocoa.mm b/src/Fl_cocoa.mm
index 17b006d86..ecf46a66a 100644
--- a/src/Fl_cocoa.mm
+++ b/src/Fl_cocoa.mm
@@ -2823,6 +2823,7 @@ static void set_subwindow_frame(Fl_Window *w) { // maps a subwindow at its corre
*/
void Fl_X::make(Fl_Window* w)
{
+ NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Fl_Group::current(0);
fl_open_display();
NSInteger winlevel = NSNormalWindowLevel;
@@ -3041,6 +3042,7 @@ void Fl_X::make(Fl_Window* w)
Fl::e_number = old_event;
// if (w->modal()) { Fl::modal_ = w; fl_fix_focus(); }
+ [pool release];
}