X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/449c567346a1b3937e532cd87aac007faad76b04..e123fe41acff4ce53e8a3650d970b64bb8447f97:/src/cocoa/statline2.mm

diff --git a/src/cocoa/statline2.mm b/src/cocoa/statline2.mm
index 15472fb1ff..d92a056dc4 100644
--- a/src/cocoa/statline2.mm
+++ b/src/cocoa/statline2.mm
@@ -6,7 +6,7 @@
 // Created:     2003/02/15
 // RCS-ID:      $Id: 
 // Copyright:   (c) 2003 David Elliott
-// Licence:   	wxWindows license
+// Licence:   	wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"
@@ -15,6 +15,8 @@
 #endif //WX_PRECOMP
 #include "wx/statline.h"
 
+#include "wx/cocoa/autorelease.h"
+
 #import <AppKit/NSBox.h>
 
 IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
@@ -28,6 +30,7 @@ bool wxStaticLine::Create(wxWindow *parent, wxWindowID winid,
            long style,
            const wxString& name)
 {
+    wxAutoNSAutoreleasePool pool;
     if(!CreateControl(parent,winid,pos,size,style,wxDefaultValidator,name))
         return false;
     SetNSView([[NSBox alloc] initWithFrame: MakeDefaultNSRect(size)]);