From f8ea76d331ed296178fc2b1170ffac844839c99f Mon Sep 17 00:00:00 2001 From: David Elliott Date: Sat, 28 Jul 2007 19:35:12 +0000 Subject: [PATCH] Merged trunk 47522: Add a couple of wxAutoNSAutoreleasePool in some key spots where Cocoa itself does a number of autoreleases. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@47794 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/cocoa/window.mm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/cocoa/window.mm b/src/cocoa/window.mm index 525a430cc0..d5758c1a5e 100644 --- a/src/cocoa/window.mm +++ b/src/cocoa/window.mm @@ -384,6 +384,9 @@ wxWindow::~wxWindow() void wxWindowCocoa::CocoaAddChild(wxWindowCocoa *child) { + // Pool here due to lack of one during wx init phase + wxAutoNSAutoreleasePool pool; + NSView *childView = child->GetNSViewForSuperview(); wxASSERT(childView); @@ -1294,6 +1297,9 @@ void wxCocoaTrackingRectManager::StopSynthesizingEvents() void wxCocoaTrackingRectManager::BuildTrackingRect() { + // Pool here due to lack of one during wx init phase + wxAutoNSAutoreleasePool pool; + wxASSERT_MSG(!m_isTrackingRectActive, wxT("Tracking rect was not cleared")); if([m_window->GetNSView() window] != nil) {