X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/48580976469f7c46b730f96effacfa680e55e3cd..e795e8b56f213f97745636a017609091746894a0:/src/cocoa/bmpbuttn.mm diff --git a/src/cocoa/bmpbuttn.mm b/src/cocoa/bmpbuttn.mm index 50da8d7cdc..5081c6a5ac 100644 --- a/src/cocoa/bmpbuttn.mm +++ b/src/cocoa/bmpbuttn.mm @@ -6,10 +6,13 @@ // Created: 2003/03/16 // RCS-ID: $Id: // Copyright: (c) 2003 David Elliott -// Licence: wxWindows license +// Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" + +#if wxUSE_BMPBUTTON + #ifndef WX_PRECOMP #include "wx/defs.h" #include "wx/bmpbuttn.h" @@ -42,8 +45,8 @@ bool wxBitmapButton::Create(wxWindow *parent, wxWindowID winid, // DoAddChild(this) will retain us again since addSubView doesn't. [m_cocoaNSView release]; - [GetNSButton() setBezelStyle:NSRoundedBezelStyle]; - [GetNSButton() setTitle:@"Bitmap Button"]; + [GetNSButton() setBezelStyle: NSRegularSquareBezelStyle]; + [GetNSButton() setImage:bitmap.GetNSImage(true)]; [GetNSControl() sizeToFit]; if(m_parent) @@ -66,3 +69,4 @@ void wxBitmapButton::Cocoa_wxNSButtonAction(void) Command(event); } +#endif