]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/statbmp.mm
fix for get best size when having empty labels
[wxWidgets.git] / src / cocoa / statbmp.mm
index f3de0e6478417b565e2884eeb08af562160c8559..83cba15fd67d7224df27a4e9ff760f38965c6a75 100644 (file)
@@ -14,8 +14,9 @@
     #include "wx/app.h"
     #include "wx/statbmp.h"
 #endif //WX_PRECOMP
+#include "wx/cocoa/autorelease.h"
 
-#import <AppKit/NSView.h>
+#import <AppKit/NSImageView.h>
 
 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
 BEGIN_EVENT_TABLE(wxStaticBitmap, wxControl)
@@ -29,10 +30,11 @@ bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID winid,
            long style,
            const wxString& name)
 {
+    wxAutoNSAutoreleasePool pool;
     if(!CreateControl(parent,winid,pos,size,style,wxDefaultValidator,name))
         return false;
     m_cocoaNSView = NULL;
-    SetNSView([[NSView alloc] initWithFrame: MakeDefaultNSRect(size)]);
+    SetNSView([[NSImageView alloc] initWithFrame: MakeDefaultNSRect(size)]);
     [m_cocoaNSView release];
     if(m_parent)
         m_parent->CocoaAddChild(this);