]> git.saurik.com Git - wxWidgets.git/commitdiff
Use an NSImageView instead of an NSView (nothing works yet)
authorDavid Elliott <dfe@tgwbd.org>
Sat, 6 Sep 2003 19:12:04 +0000 (19:12 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Sat, 6 Sep 2003 19:12:04 +0000 (19:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/statbmp.mm

index f3de0e6478417b565e2884eeb08af562160c8559..050ab2e0412b3d4cfa54b8906a229c80426eb68c 100644 (file)
@@ -15,7 +15,7 @@
     #include "wx/statbmp.h"
 #endif //WX_PRECOMP
 
-#import <AppKit/NSView.h>
+#import <AppKit/NSImageView.h>
 
 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
 BEGIN_EVENT_TABLE(wxStaticBitmap, wxControl)
@@ -32,7 +32,7 @@ bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID winid,
     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);