From 0ca6987db2b4ece46da16f1a322c0e75081e3d4b Mon Sep 17 00:00:00 2001 From: David Elliott Date: Sat, 6 Sep 2003 19:12:04 +0000 Subject: [PATCH] Use an NSImageView instead of an NSView (nothing works yet) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/cocoa/statbmp.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cocoa/statbmp.mm b/src/cocoa/statbmp.mm index f3de0e6478..050ab2e041 100644 --- a/src/cocoa/statbmp.mm +++ b/src/cocoa/statbmp.mm @@ -15,7 +15,7 @@ #include "wx/statbmp.h" #endif //WX_PRECOMP -#import +#import 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); -- 2.45.2