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/trunk@47522 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2007-07-17 05:31:49 +00:00
parent 2465458c06
commit b0a207df87

View File

@ -380,6 +380,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);
@ -1246,6 +1249,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)
{