]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/statline2.mm
I don't understand what the original author
[wxWidgets.git] / src / cocoa / statline2.mm
index 15472fb1ff5d9dd6a1829858bd08cfc5b1e4e0e2..283ca293a8d98154efcfe4a525934f197d56f286 100644 (file)
@@ -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)]);